Created
March 5, 2018 14:00
-
-
Save maxwelleite/26de4032f26921784020686920d535bc to your computer and use it in GitHub Desktop.
Zorin OS Start Page Field Focus - Simple Greasemonkey/Violentmonkey/TamperMonkey script to autofocus the field on "Zorin OS Start Page" (https://zorinos.com/start/)
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 Zorin OS Start Page Field Focus | |
// @description Simple Greasemonkey/Violentmonkey/TamperMonkey script to autofocus the field on "Zorin OS Start Page / Search Google" | |
// @namespace http://www.openjs.com/ | |
// @include https://zorinos.com/start/ | |
// @author Maxwel Leite | |
// @namespace https://gist.github.com/maxwelleite | |
// @encoding utf-8 | |
// @version 1.0 | |
// @updateURL | |
// @downloadURL | |
// @homepageURL https://gist.github.com/maxwelleite | |
// @supportURL https://gist.github.com/maxwelleite | |
// @license LGPLv3 | |
// @icon https://zorinos.com/favicon.ico | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { | |
document.getElementById('i').focus(); | |
}, false); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment