Skip to content

Instantly share code, notes, and snippets.

@nake89
Created June 5, 2018 11:52
Show Gist options
  • Save nake89/d5ae9e677ce01fafd78efecfc5dc6dff to your computer and use it in GitHub Desktop.
Save nake89/d5ae9e677ce01fafd78efecfc5dc6dff to your computer and use it in GitHub Desktop.
Wikipedia search focus
// ==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