Off Topic > Off Topic
My Little Pony: Friendship for Blockheads: General V2
Pages: << < (18083/34068) > >>
nienhaus1:
--- Quote from: Regulith on January 19, 2012, 08:29:55 AM ---Tampermonkey for Chrome, Greasemonkey for Firefox.
--- End quote ---
Ok good it works.
Coolio:
Oh my god this script is beautiful.
Lørd Tøny:
--- Quote from: Coolio on January 19, 2012, 09:13:20 AM ---Oh my god this script is beautiful.
--- End quote ---
I can't help but notice the irony.
Coolio:
Latest post by -snip-
i lol'd
Coolio:
--- Code: ---[code]
// ==UserScript==
// @name User Removal
// @namespace
// @version 0.3
// @description something useful
// @include http://forum.blockland.us/*
// @copyright 2012+, Kingdaro
// ==/UserScript==
// var postForm = document.getElementById('quickModForm');
var posts = document.getElementsByTagName('td');
var n = ['action=profile;u=[b]36235[/b]'];
var i;
for (i=0;i<=posts.length;i++){
var v = posts[i];
var str = v.innerHTML;
if (str.search(n)>-1){
if (v.className=='windowbg' || v.className=='windowbg2'){
posts[i].innerHTML = '<div style=" \
text-align:center; \
">-snip-</div>';
}
}
}
--- End code ---
Change the bolded part to anyone else's profile ID to block them too. I'd just make a new script/entry in Tamper/Greasemonkey.[/code]