Search Results

Found 1 results for "85b386a9223a2b5b7b1d6e3431aa6f20" across all boards searching md5.

Anonymous ID: MLw13ucqUnited Kingdom /bant/22805537#22805787
6/11/2025, 1:47:40 PM
>>22805779

eheheh

// ==UserScript==
// @name /bbg/ fart
// @match https://boards.4chan.org/bant/thread/*
// ==/UserScript==

function fartify(){
Array.from(document.querySelectorAll(".name")).filter(e=>e.innerText === "The_Prick").forEach(e=>{e.innerText="The_Fart"});
}
var observer = new MutationObserver(function(mutationRecord){
mutationRecord.forEach(function(mutation){
mutation.addedNodes.forEach(function(node){
fartify();
});
});
});
fartify();
observer.observe(document.querySelector(".thread"), {childList:true});