Greasy Fork

Greasy Fork is available in English.

Google Tools Button Clicker

Automatically clicks Tools button on Google search.

目前为 2017-07-15 提交的版本。查看 最新版本

// ==UserScript==
// @name        Google Tools Button Clicker
// @namespace   knoa.jp
// @description:en Automatically clicks Tools button on Google search.
// @description:ja Google検索結果のページでツールボタンを自動的にクリックします。
// @include     https://www.google.*/search*
// @version     1.1
// @grant       none
// @description Automatically clicks Tools button on Google search.
// ==/UserScript==

(function(){
  window.addEventListener('load', setTimeout.bind(null, function () {
    let focused = document.activeElement;
    let tool = document.querySelector('#hdtb-tls:not(.hdtb-tl-sel)');
    if (tool) tool.click();
    focused.focus();
  }, 10));
})();