Created
March 28, 2012 01:36
-
-
Save honda0510/2222729 to your computer and use it in GitHub Desktop.
Greasemonkey Test2
This file contains 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 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); |
This file contains 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 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); |
This file contains 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
hoge = 'hoge'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment