Created
February 21, 2010 23:14
-
-
Save erikvold/310604 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Disable Auto Focus | |
// @namespace googleDisableAutoFocus | |
// @include /^http:\/\/(www\.)?google\.c(a|om)\/?$/i | |
// @include http://www.google.tld/ | |
// @match http://www.google.com/ | |
// @match http://www.google.ca/ | |
// @run-at document-start | |
// @datecreated 2010-02-21 | |
// @lastupdated 2010-02-21 | |
// @version 0.1 | |
// @author Erik Vergobbi Vold | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @description This userscript will disable Google's auto focus | |
// ==/UserScript== | |
document.body.setAttribute("onload",""); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment