Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arantius/1576836 to your computer and use it in GitHub Desktop.
Save arantius/1576836 to your computer and use it in GitHub Desktop.
Test Greasemonkey issue #1482
// ==UserScript==
// @name GM_registerMenuCommand Zombie Creator
// @namespace https://github.com/arantius/
// @description Test Greasemonkey issue #1482
// @include http*
// ==/UserScript==
if (location.href.indexOf('?trigger') > -1) {
GM_openInTab('http://random.yahoo.com/bin/ryl');
} else {
GM_registerMenuCommand('dummy', function() {}, 'd');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment