Phannikizer for funnyjunk

Makes shit orange

  1. // ==UserScript==
  2. // @name Phannikizer for funnyjunk
  3. // @include *funnyjunk.com*
  4. // @version 2
  5. // @description Makes shit orange
  6. // @namespace https://greatest.deepsurf.us/users/3806
  7. // ==/UserScript==
  8.  
  9.  
  10. (function() {
  11. var css = "\n.green_u { border-bottom: 1px dotted #ff6600; color: #ff6600; text-decoration: none; } .pink_u { color: #ff6600; } #contentLeft table.menu a { color: #ff6600; } .boardsMenu span { color: orange; } div.com div.r a { color: #ff6600!important; } div.com div.r a:hover { color: #ff6600!important; } .comPaginator a, div.paginator a { color: #ff6600; } #showCommentsOptions .selected { color: #ff6600!important; } a:hover { color: #ff6600; } a { color: #ff6600; } body { color: #ff6600; }#boards_bar a { color: #ff6600; } #contentLeft ul.menu1 a { color: #ff6600; } #contentLeft ul.menu a { color: #ff6600; } pinkLight { color: #ff6600; }\n}\n#contentRight .inner{\nbackground-image: url(\"http://i.imgur.com/tjwwh8y.png\") !important;\nbackground-repeat:no-repeat !important;\nbackground-position:center !important;\nbackground-attachment:fixed !important;\n}";
  12. if (typeof GM_addStyle != "undefined") {
  13. GM_addStyle(css);
  14. } else if (typeof PRO_addStyle != "undefined") {
  15. PRO_addStyle(css);
  16. } else if (typeof addStyle != "undefined") {
  17. addStyle(css);
  18. } else {
  19. var heads = document.getElementsByTagName("head");
  20. if (heads.length > 0) {
  21. var node = document.createElement("style");
  22. node.type = "text/css";
  23. node.appendChild(document.createTextNode(css));
  24. heads[0].appendChild(node);
  25. }
  26. }
  27. })();