Skip to content

Instantly share code, notes, and snippets.

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 maxwelleite/26de4032f26921784020686920d535bc to your computer and use it in GitHub Desktop.
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/)
// ==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