//Add the exact username of someone below that you want to block, with quotes surrounding the name and a comma var trolls = ["Plissken"];
console.log("TrollBlock Plus (by Croned) activated!");
setInterval(function() {scan();}, 10);
function scan() { for (var i = 0; i < trolls.length; i++) { $(".commentinfo a.tt").each(function() { if ($(this).html().trim() == trolls[i]) { $(this).parents(".comment").hide(); } });