Skip to content

Instantly share code, notes, and snippets.

@nhtzr
Last active March 4, 2016 01:08
Show Gist options
  • Save nhtzr/30c450cf021ecea2afde to your computer and use it in GitHub Desktop.
Save nhtzr/30c450cf021ecea2afde to your computer and use it in GitHub Desktop.
Userscript boiler plate. Stolen from tampermonkey.
// ==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