NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Google Autocorrect Disabler
// @description Redirects to "Did you mean" version of Google search.
// @include http://*.google.*/*
// @homepage https://github.com/WoLpH/userscript-disable-google-autocorrect
// @version 1.0
// ==/UserScript==
if(
document.getElementById('topstuff')
&& document.getElementById('topstuff').getElementsByTagName('span').length > 0
&& (/q=/).test(document.location.href)
&& (!(/&nfpr=1/).test(document.location.href))
){
window.location = window.location + "&nfpr=1";
}