Seriously though, tired of that shit
Put everything below this in your user JS to hide all the B4mb1no spam:
/* set call to B4mb1Stripper function on page load */
window.onload = B4mb1Stripper;
/* the stripper herself */
function B4mb1Stripper()
{
/* get all THREADS */
var THREADS = document.getElementsByClassName("thread");
/* for each post*/
for (var i = 0; i < THREADS.length; i++)
{
/* if thread has trash */
/* to be precise if it has B4mb1 trash */
var caps = THREADS[i].innerText.toUpperCase();
if (caps.search("B4mb1") != -1)
{
THREADS[i].style.display = "none";
}
}
/* get all posts */
var POSTS = document.getElementsByClassName("post");
/* for each post*/
for (i = 0; i < POSTS.length; i++)
{
/* if poast has trash */
/* to be precise if it has B4mb1 trash */
var caps = POSTS[i].innerText.toUpperCase();
if (caps.search("B4MB1") != -1)
{
/*POSTS[i].style.display ="none";*/
var body = POSTS[i].getElementsByClassName("body");
body[0].style.display = "none" ;
}
}
}