Last active
September 23, 2017 18:38
-
-
Save qgustavor/8b58e2ff44c1a429e68c27e1f369389e to your computer and use it in GitHub Desktop.
Kawaii Shoutbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Kawaii Shoutbox | |
| // @namespace userscripts@グスタボ.tk | |
| // @include https://tracker.uniotaku.com/shoutboxn.php | |
| // @version 1.0.0 | |
| // @grant none | |
| // ==/UserScript== | |
| // Mude a URL como quiser: | |
| var imageURL = 'https://i.imgur.com/JZGR3Tc.jpg'; | |
| var styleEl = document.createElement('style'); | |
| styleEl.innerHTML = 'body{ background: url(' + imageURL + '); } ' + | |
| '.message { background-color: rgba(244, 244, 244, 0.8); }'; | |
| document.head.appendChild(styleEl); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment