By Brokekid
—
Last update
Aug 8, 2005
—
Installed
1,902 times.
// Based on a script in Mark Pilgram's upcoming "Dive into Greasemonkey"
// ==UserScript==
// @name Renamer
// @namespace http://overstimulate.com/userscripts
// @description A spade by any other name...
// @include *
// ==/UserScript==
(function() {
var replacements, regex, key, textnodes, node, s;
replacements = {
"Ann Coulter": "Right Wing Asshat",
"Ann": "Blabbering Moron",
"Coulter": "Ignorant Fascist Windbag"};
regex = {};
for (key in replacements) {
regex[key] = new RegExp(key, 'g');
}
textnodes = document.evaluate( "//body//text()", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < textnodes.snapshotLength; i++) {
node = textnodes.snapshotItem(i);
s = node.data;
for (key in replacements) {
s = s.replace(regex[key], replacements[key]);
}
node.data = s;
}
})();