Greasy Fork is available in English.

Google Tools Button Clicker

Automatically clicks Tools button on Google search.

Från och med 2019-08-12. Se den senaste versionen.

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     2.0
// @run-at      document-start
// @grant       none
// ==/UserScript==

/*
「全ての言語」などにhoverで開く機能を付与する?
*/
(function(){
  const TARGETS = {
    tools: () => document.querySelector('#hdtb-tls'),
    menus: () => document.querySelector('#hdtbMenus'),
  };
  let openMenus = function(){
    let menus = TARGETS.menus(), tools = TARGETS.tools(), ae = document.activeElement;
    if(menus && menus.getAttribute('aria-expanded') === 'true') return;
    if(tools) tools.click(), ae.focus();
    setTimeout(openMenus, 250);
  };
  if(document.hidden) window.addEventListener('focus', openMenus, {once: true});
  else window.addEventListener('load', setTimeout.bind(null, openMenus, 250));
})();