Skip to content

Instantly share code, notes, and snippets.

@amullins83
Created March 2, 2016 14:55
Show Gist options
  • Save amullins83/3ef001e24aaada887db4 to your computer and use it in GitHub Desktop.
Save amullins83/3ef001e24aaada887db4 to your computer and use it in GitHub Desktop.
Simple Chrome Mangler Extension transform script
function drumpfinate(text) {
return text.replace(/\bTrump\b/g, "Drumpf");
}
(function transformTree(transform) {
var walker = document.createTreeWalker(
document.body,
NodeFilter.SHOW_TEXT,
null,
false
);
var node;
while (node = walker.nextNode()) {
node.nodeValue = transform(node.nodeValue);
}
})(drumpfinate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment