>>11815538 >>11815455
sans jquery… unless getElementsByTagName() calls it
function decodeDispute(){
let needle = "This claim about election fraud is disputed";
let msg = "This claim is absolutely true despite Twitter's Cocksucking Leftists writing shit code to indicate otherwise.";
var claimsEls = document.getElementsByTagName("span");
for ( var each in claimsEls ) {
var found = claimsEls[each].innerText;
if(found != null && found.includes(needle)){
claimsEls[each].innerText = msg;
}
}
}
decodeDispute();