Advertisement
Guest User

FJ Red code

a guest
Apr 16th, 2014
3
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Redilizer for funnyjunk
  3. // @match http://www.funnyjunk.com/*
  4. // @version 2
  5. // ==/UserScript==
  6.  
  7.  
  8. (function() {
  9. var css = "\n.green_u { border-bottom: 1px dotted #ff0000; color: #ff0000; text-decoration: none; } .pink_u { color: #ff0000; } #contentLeft table.menu a { color: #ff0000; } .boardsMenu span { color: red; } div.com div.r a { color: #ff0000!important; } div.com div.r a:hover { color: #ff0000!important; } .comPaginator a, div.paginator a { color: #ff0000; } #showCommentsOptions .selected { color: #ff0000!important; } a:hover { color: #ff0000; } a { color: #ff0000; } body { color: #ff0000; }#boards_bar a { color: #ff0000; } #contentLeft ul.menu1 a { color: #ff0000; } #contentLeft ul.menu a { color: #ff0000; } pinkLight { color: #ff0000; }\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}";
  10. if (typeof GM_addStyle != "undefined") {
  11. GM_addStyle(css);
  12. } else if (typeof PRO_addStyle != "undefined") {
  13. PRO_addStyle(css);
  14. } else if (typeof addStyle != "undefined") {
  15. addStyle(css);
  16. } else {
  17. var heads = document.getElementsByTagName("head");
  18. if (heads.length > 0) {
  19. var node = document.createElement("style");
  20. node.type = "text/css";
  21. node.appendChild(document.createTextNode(css));
  22. heads[0].appendChild(node);
  23. }
  24. }
  25. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement