NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ignoreuser // @namespace tmb // @description Ignore posts by user // @include http*://*themixingbowl.org/thread/view/* // @include http*://*tmb.dj/thread/view/* // ==/UserScript== ignore = ''; // Enter the user you want to ignore here, only a single user is allowed nodes = document.evaluate('//*[@class="username"]/a[.="'+ignore+'"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null); for(i = 0; i < nodes.snapshotLength; i++) { //console.log(nodes.snapshotItem(i)); (foo = nodes.snapshotItem(i).parentNode.parentNode.parentNode); foo.setAttribute('style','display: none; visibility: hidden;'); }