-
-
Save jokester/5290008 to your computer and use it in GitHub Desktop.
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 Script name | |
// @description Description | |
// @namespace http://yourwebsite.com | |
// @version 0.1.0 | |
// @author Your name | |
// @license MIT | |
// @released 2013-02-17 | |
// @updated 2013-02-17 | |
// @match *://example.com/* | |
// @match *://www.example.com/* | |
// @run-at document-start | |
// ==/UserScript== | |
(function () { | |
'use strict'; | |
// before the DOM has loaded | |
document.addEventListener('DOMContentLoaded', function (e) { | |
// after the DOM has loaded | |
// silently fails in Firefox if placed outside when `document-start` | |
GM_addStyle('body { background: hotPink }'); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment