Skip to content

Instantly share code, notes, and snippets.

@honda0510
Created March 28, 2012 01:36
Show Gist options
  • Save honda0510/2222729 to your computer and use it in GitHub Desktop.
Save honda0510/2222729 to your computer and use it in GitHub Desktop.
Greasemonkey Test2
// ==UserScript==
// @name DoNothing1
// @namespace honda0510
// @include http://www.moug.net/*
// @require https://gist.github.com/raw/2222729/IncludeMe.js
// ==/UserScript==
try {
GM_log(hoge);
} catch (e) {
GM_log('hoge is not defined');
}
GM_log('DoNothing1 run at ' + location.href);
// ==UserScript==
// @name DoNothing2
// @namespace honda0510
// @include http://www.moug.net/*
// ==/UserScript==
try {
GM_log(hoge);
} catch (e) {
GM_log('hoge is not defined');
}
GM_log('DoNothing2 run at ' + location.href);
hoge = 'hoge';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment