Name: Anonymous 2009-01-08 18:11
// ==UserScript==
// @name AnonBBS
// @namespace ide
// @description Removes tripcode users from the world4ch bbs
// @include http://dis.4chan.org/read*;
// @include http://dis.4chan.org/prog*;
// ==/UserScript==
(function() {
function onnode(e) {
makeanon();
}
function makeanon() {
var tripnodes = document.getElementsByClassName ("postertrip");
for (var i=0; i<tripnodes.length; ++i) {
tripnodes[i].innerText = "";
}
var postnames = document.getElementsByClassName ("postername");
for (var i=0; i<tripnodes.length; ++i) {
postnames[i].innerText = "Anonymous";
}
}
window.addEventListener("DOMContentLoaded", onnode, false);
})();