garr3tt

Blog WO czarne litery szare tło

Jan 13th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name          Blog WO czarne litery szare tło
  3. // @namespace     http://userstyles.org
  4. // @description   czarne (a raczej prawie czarne) litery na szarym tle, nic więcej nie zmieniane
  5. // @author        clondike
  6. // @homepage      http://userstyles.org/styles/10168
  7. // @include       http://wo.blox.pl/*
  8. // @include       https://wo.blox.pl/*
  9. // @include       http://*.wo.blox.pl/*
  10. // @include       https://*.wo.blox.pl/*
  11. // ==/UserScript==
  12. (function() {
  13. var css = "* { \n    color: #050505 !important;\n    background-color: #F0F0F0 !important;\n  }";
  14. if (typeof GM_addStyle != "undefined") {
  15.     GM_addStyle(css);
  16. } else if (typeof PRO_addStyle != "undefined") {
  17.     PRO_addStyle(css);
  18. } else if (typeof addStyle != "undefined") {
  19.     addStyle(css);
  20. } else {
  21.     var heads = document.getElementsByTagName("head");
  22.     if (heads.length > 0) {
  23.         var node = document.createElement("style");
  24.         node.type = "text/css";
  25.         node.appendChild(document.createTextNode(css));
  26.         heads[0].appendChild(node);
  27.     }
  28. }
  29. })();
Advertisement
Add Comment
Please, Sign In to add comment