Greasy Fork is available in English.
Automatically clicks Tools button on Google search.
当前为
// ==UserScript==
// @name Google Tools Button Clicker
// @namespace knoa.jp
// @description Automatically clicks Tools button on Google search.
// @description Google検索結果のページでツールボタンを自動的にクリックします。
// @include https://www.google.*/search*
// @version 1
// @grant none
// ==/UserScript==
(function () {
window.addEventListener('load', setTimeout.bind(null, function () {
let tool = document.querySelector('#hdtb-tls:not(.hdtb-tl-sel)');
if (tool) tool.click();
document.querySelector('#rso h3 a').focus();
}, 100));
}) ();