NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name gaia no taunt notices // @namespace kittyfluff // @version 0.1 // @match *.gaiaonline.com/forum/* // ==/UserScript== // removes the taunting and totally useless "topics blocked"-message var notClasses = document.getElementsByClassName("notice"); for (var item = 0; item < notClasses.length; item++) { if (notClasses[item].innerHTML.match(/^Topics blocked/)) { notClasses[item].style.display = "none"; break; } }