Created
June 5, 2018 11:52
-
-
Save nake89/d5ae9e677ce01fafd78efecfc5dc6dff to your computer and use it in GitHub Desktop.
Wikipedia search focus
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 Wikipedia search focus | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description focus focus focus | |
// @author nake89 | |
// @match https://en.wikipedia.org/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementById("searchInput").focus(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment