Greasy Fork镜像 支持简体中文。

Google Search 30 per pagina figuccio

Mostra 30 risultati di ricerca per pagina Google

  1. // ==UserScript==
  2. // @name Google Search 30 per pagina figuccio
  3. // @description Mostra 30 risultati di ricerca per pagina Google
  4. // @namespace https://gf.qytechs.cn/users/237458
  5. // @author figuccio
  6. // @version 0.1
  7. // @match https://*.google.com/*
  8. // @match https://*.google.it/*
  9. // @match https://*.google.fr/*
  10. // @match https://*.google.es/*
  11. // @match https://*.google.de/*
  12. // @exclude https://drive.google.com/*
  13. // @grant GM_addStyle
  14. // @grant GM_setValue
  15. // @grant GM_getValue
  16. // @run-at document-start
  17. // @icon https://www.google.com/favicon.ico
  18. // @noframes
  19. // @license MIT
  20. // ==/UserScript==
  21. //////////////////////30 risultati per pagina
  22. (function() {
  23. 'use strict';
  24. if (GM_getValue('Amount of results to Show') === undefined) //Se la quantità di risultati da mostrare non è definita
  25. { //Avvia la condizione if
  26. GM_setValue('Amount of results to Show', 30); //Imposta la quantità predefinita di risultati da mostrare come 30/100
  27. } //Termina la condizione if
  28.  
  29. if (location.pathname === '/search' && location.href.match('&num=' + GM_getValue('Amount of results to Show') ) === null) //If the current search doesn't have the user choices applied
  30. { //Avvia la condizione if
  31. location.href = location.href += '&num=' + GM_getValue('Amount of results to Show') ; //Reindirizza per aggiungere le scelte dell'utente
  32. } //Termina la condizione if
  33. })();

QingJ © 2025

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