Skip to content

Instantly share code, notes, and snippets.

@CezaryDanielNowak
Created April 18, 2019 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CezaryDanielNowak/806c63001d9ef62934b560559954a9c9 to your computer and use it in GitHub Desktop.
Save CezaryDanielNowak/806c63001d9ef62934b560559954a9c9 to your computer and use it in GitHub Desktop.
(function() {
var n, walk = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, null, false);
while (n = walk.nextNode()) { if (n.nodeValue.trim()) n.nodeValue += ", fockin' cunt!" };
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment