NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name PinkBeGone // @namespace http://openuserjs.org/users/CrayZeApe // @description Remove the PINK fluffy stuff from www.givemegossip.com // @include http://www.givemegossip.com/* // @version 1 // @grant none // ==/UserScript== function removecssfile(filename, filetype){ var targetelement=(filetype=="css")? "link" : "none" var targetattr=(filetype=="css")? "href" : "none" var pinkbits=document.getElementsByTagName(targetelement) for (var i=pinkbits.length; i>=0; i--){ if (pinkbits[i] && pinkbits[i].getAttribute(targetattr)!==null && pinkbits[i].getAttribute(targetattr).indexOf(filename)!=-1) pinkbits[i].parentNode.removeChild(pinkbits[i]) } } removecssfile("min-pink.css", "css")