Google Search Sidebar figuccio

Google search tools to sidebar.

  1. // ==UserScript==
  2. // @name Google Search Sidebar figuccio
  3. // @namespace https://gf.qytechs.cn/users/237458
  4. // @version 0.5
  5. // @description Google search tools to sidebar.
  6. // @author figuccio
  7. // @match https://*.google.com/*
  8. // @match https://*.google.it/*
  9. // @match https://*.google.fr/*
  10. // @match https://*.google.es/*
  11. // @run-at document-start
  12. // @grant GM_addStyle
  13. // @icon https://www.google.com/favicon.ico
  14. // @license MIT
  15. // ==/UserScript==
  16. //GM_addStyle("#hdtbMenus{display:block !important;position:absolute !important;top:8px !important;right:auto!important;}");//marzo 2024
  17. GM_addStyle("#result-stats{display:none!important;}");/* Circa 261.000.000 risultati (0,61 secondi) nascosto */
  18. (function() {
  19. 'use strict';
  20.  
  21. const interval = setInterval(() =>
  22. {
  23. var toolsButton = document.getElementById('hdtb-tls');
  24. if (toolsButton.getAttribute("aria-expanded") === "true") {
  25.  
  26. clearInterval(interval);
  27. }
  28. else{toolsButton.click();
  29. }
  30. }, 250);
  31. })();
  32.  

QingJ © 2025

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