Funnyjunk OCD Pixel Fixer :)

REMOVES THE FUCKING 4px THING

  1. // ==UserScript==
  2. // @name Funnyjunk OCD Pixel Fixer :)
  3. // @namespace Posttwo
  4. // @description REMOVES THE FUCKING 4px THING
  5. // @include http://www.funnyjunk.com/*
  6. // @version 1
  7. // ==/UserScript==
  8.  
  9. (function() {
  10. var css = "\n#contentRightTop { width: 0px!important; }\n}";
  11. if (typeof GM_addStyle != "undefined") {
  12. GM_addStyle(css);
  13. } else if (typeof PRO_addStyle != "undefined") {
  14. PRO_addStyle(css);
  15. } else if (typeof addStyle != "undefined") {
  16. addStyle(css);
  17. } else {
  18. var heads = document.getElementsByTagName("head");
  19. if (heads.length > 0) {
  20. var node = document.createElement("style");
  21. node.type = "text/css";
  22. node.appendChild(document.createTextNode(css));
  23. heads[0].appendChild(node);
  24. }
  25. }
  26. })();