Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Blog WO czarne litery szare tło
- // @namespace http://userstyles.org
- // @description czarne (a raczej prawie czarne) litery na szarym tle, nic więcej nie zmieniane
- // @author clondike
- // @homepage http://userstyles.org/styles/10168
- // @include http://wo.blox.pl/*
- // @include https://wo.blox.pl/*
- // @include http://*.wo.blox.pl/*
- // @include https://*.wo.blox.pl/*
- // ==/UserScript==
- (function() {
- var css = "* { \n color: #050505 !important;\n background-color: #F0F0F0 !important;\n }";
- if (typeof GM_addStyle != "undefined") {
- GM_addStyle(css);
- } else if (typeof PRO_addStyle != "undefined") {
- PRO_addStyle(css);
- } else if (typeof addStyle != "undefined") {
- addStyle(css);
- } else {
- var heads = document.getElementsByTagName("head");
- if (heads.length > 0) {
- var node = document.createElement("style");
- node.type = "text/css";
- node.appendChild(document.createTextNode(css));
- heads[0].appendChild(node);
- }
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment