Last active
March 4, 2016 01:08
-
-
Save nhtzr/30c450cf021ecea2afde to your computer and use it in GitHub Desktop.
Userscript boiler plate. Stolen from tampermonkey.
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 My Fancy New Userscript | |
| // @namespace http://your.homepage/ | |
| // @version 0.1 | |
| // @description enter something useful | |
| // @author You | |
| // @match https://gist.github.com/a | |
| // @grant none | |
| // ==/UserScript== | |
| (function(document, $){ | |
| // Do some code | |
| }(document, jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment