Google Tools Button Clicker

Automatically clicks Tools button on Google search.

2019-01-17 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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));
})();