Skip to content

Instantly share code, notes, and snippets.

@Y0ba
Created July 8, 2013 17:28
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 Y0ba/a2b623d4f30bb814d192 to your computer and use it in GitHub Desktop.
Save Y0ba/a2b623d4f30bb814d192 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Greasemonkey/Scriptish Bug
// @version 1
// @author Y0ba
// @grant GM_openInTab
// @include http://*
// @include https://*
// ==/UserScript==
document.body.insertAdjacentHTML('afterbegin', '<h1 id="gmbug-h1" style="color: red; cursor: pointer;">Click me!</h1>');
document.getElementById('gmbug-h1').onclick = function() {
GM_openInTab('https://github.com/greasemonkey/greasemonkey/');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment