Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name MinMascot for 4chan
- // @namespace http://userstyles.org
- // @description Minimal 4chan Mascot for the discerning foreveralone virgin.
- // @author wutweeaboo
- // @homepage https://userstyles.org/styles/85301
- // @include http://boards.4chan.org/*
- // @include https://boards.4chan.org/*
- // @include http://*.boards.4chan.org/*
- // @include https://*.boards.4chan.org/*
- // @include http://rs.4chan.org/*
- // @include https://rs.4chan.org/*
- // @include http://*.rs.4chan.org/*
- // @include https://*.rs.4chan.org/*
- // @run-at document-start
- // @version 0.20130331030401
- // ==/UserScript==
- (function() {var css = [
- "body::after {",
- " position: fixed !important;",
- " content: url(\'http://i.imgur.com/eAKzc38.png\');",
- " bottom: -3px !important; ",
- " right: 0px !important;",
- " opacity:0.7;",
- " z-index:-1;",
- "}",
- " ",
- "/*",
- "Default Values",
- " bottom: -17px !important; ",
- " right: 0px !important;",
- "*/"
- ].join("\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 node = document.createElement("style");
- node.type = "text/css";
- node.appendChild(document.createTextNode(css));
- var heads = document.getElementsByTagName("head");
- if (heads.length > 0) {
- heads[0].appendChild(node);
- } else {
- // no head yet, stick it whereever
- document.documentElement.appendChild(node);
- }
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment