Google Search 30 per pagina figuccio

Mostra 30 risultati di ricerca per pagina Google

目前為 2024-08-10 提交的版本,檢視 最新版本

// ==UserScript==
// @name           Google Search 30 per pagina figuccio
// @description    Mostra 30 risultati di ricerca per pagina Google
// @namespace      https://gf.qytechs.cn/users/237458
// @author         figuccio
// @version        0.1
// @match          https://*.google.com/*
// @match          https://*.google.it/*
// @match          https://*.google.fr/*
// @match          https://*.google.es/*
// @match          https://*.google.de/*
// @exclude        https://drive.google.com/*
// @grant          GM_addStyle
// @grant          GM_setValue
// @grant          GM_getValue
// @run-at         document-start
// @icon           https://www.google.com/favicon.ico
// @noframes
// @license        MIT
// ==/UserScript==
//////////////////////30 risultati per pagina
(function() {
  'use strict';
  if (GM_getValue('Amount of results to Show') === undefined) //Se la quantità di risultati da mostrare non è definita
  { //Avvia la condizione if
    GM_setValue('Amount of results to Show', 30); //Imposta la quantità predefinita di risultati da mostrare come 30/100
  } //Termina la condizione if

  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
  { //Avvia la condizione if
    location.href = location.href += '&num=' + GM_getValue('Amount of results to Show') ; //Reindirizza per aggiungere le scelte dell'utente
  } //Termina la condizione if
})();

QingJ © 2025

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