Redirect faster with Greasemonkey
- by Chad
I'm using Greasemonkey to redirect certain URLs to another but I would like to redirect before the URL to be redirect loads.
Currently I'm using this simple script:
//==UserScript==
// @name Redirect Google
// @description Redirect Google to Yahoo!
// @include http://*.google.com/*
//==/UserScript==
window.location.replace("http://www.yahoo.com")
In the above, google appears for a second and then redirected to google. I want to go yahoo immediately. Is it possible, and how?