Google Tools Button Clicker

Automatically clicks Tools button on Google search.

当前为 2017-07-08 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Google Tools Button Clicker
  3. // @namespace knoa.jp
  4. // @description Automatically clicks Tools button on Google search.
  5. // @description Google検索結果のページでツールボタンを自動的にクリックします。
  6. // @include https://www.google.*/search*
  7. // @version 1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. window.addEventListener('load', setTimeout.bind(null, function () {
  13. lettool = document.querySelector('#hdtb-tls:not(.hdtb-tl-sel)');
  14. if (tool) tool.click();
  15. document.querySelector('#rso h3 a').focus();
  16. }, 100));
  17. }) ();