Created
February 3, 2011 15:49
-
-
Save teramako/809658 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 GM_test_01 | |
// @description GM test 01 | |
// @include * | |
// ==/UserScript== | |
window.FOO = "BAR"; | |
if (this.sharedObject) | |
sharedObject.FOO = "SHARED BAR"; |
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 GM_test_02 | |
// @description GM test 02 | |
// @include * | |
// ==/UserScript== | |
window.setTimeout(function(self) { | |
console.log("window.FOO == 'BAR' ? : " + window.FOO); | |
if (self.sharedObject) | |
console.log("sharedObject.FOO == 'SHARED BAR' ? : " + sharedObject.FOO); | |
}, 1000, this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment