Google Tools Button Clicker

Automatically clicks Tools button on Google search.

目前为 2019-01-17 提交的版本。查看 最新版本

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

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址