Skip to content

Instantly share code, notes, and snippets.

@Ventero
Created July 7, 2012 14:54
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 Ventero/3066765 to your computer and use it in GitHub Desktop.
Save Ventero/3066765 to your computer and use it in GitHub Desktop.
location.replace test for GM
// ==UserScript==
// @name location.replace test
// @namespace test
// @include *
// @version 1
// @grant GM_addStyle
// ==/UserScript==
if(window.location.href.indexOf("anchor") == -1) {
alert("Replacing location");
window.location.replace('#anchor');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment