🏠 Home 

Jisho Input Selector

Selects the text in Jisho's search bar when alt-tabbing or switching into a Jisho tab.

// ==UserScript==
// @name         Jisho Input Selector
// @namespace    https://greasyfork.org/users/696211-ctl2
// @version      0.1
// @description  Selects the text in Jisho's search bar when alt-tabbing or switching into a Jisho tab.
// @author       Callum Latham
// @license      MIT
// @match        https://jisho.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=jisho.org
// @grant        none
// ==/UserScript==
(function() {
window.addEventListener('focus', () => {
document.getElementById('keyword').select();
});
})();