Greasy Fork is available in English.
Amazon.co.jpの検索バーを選択する。
当前为
// ==UserScript==
// @name Amazon.co.jpの検索バーを選択
// @description Amazon.co.jpの検索バーを選択する。
// @match *://amazon.co.jp/*
// @match *://www.amazon.co.jp/*
// @author toshi (https://github.com/k08045kk)
// @license MIT License
// @see https://opensource.org/licenses/MIT
// @version 1.3
// @see 1.20190831 - 初版
// @grant none
// @namespace https://www.bugbugnow.net/
// ==/UserScript==
(function() {
document.getElementById('twotabsearchtextbox').select();
})();