Endless Google Search Enhancer

Shows up to 100 search results at once on all pages! *Optional= Open (or not) search results on a new tab.

安装此脚本?
作者推荐脚本

您可能也喜欢Precise Time Converter on Google

安装此脚本
  1. // ==UserScript==
  2. // @name Endless Google Search Enhancer
  3. // @namespace SearchEnhancer
  4. // @version 11
  5. // @description Shows up to 100 search results at once on all pages! *Optional= Open (or not) search results on a new tab.
  6. // @author hacker09
  7. // @include *://www.google.*
  8. // @include *://www.google.it/*
  9. // @exclude /^(https:\/\/www.google\.(com|it)\/)(finance|preferences|maps\?q=.*|flights\?q=.*|.*tbm=isch)(\/.*)?/
  10. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://www.google.com&size=64
  11. // @run-at document-start
  12. // @grant GM_getValue
  13. // @grant GM_setValue
  14. // @noframes
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. if (GM_getValue('Amount of results to Show') === undefined) //If the amount of results to show isn't defined
  20. { //Starts the if condition
  21. GM_setValue('Amount of results to Show', 100); //Set the default amount of results to show as 100
  22. GM_setValue('Open in new window?', 0); //Set the script to not open websites on a new tab
  23. } //Finishes the if condition
  24.  
  25. if (location.pathname === '/search' && location.href.match('&num=' + GM_getValue('Amount of results to Show') + '&newwindow=' + GM_getValue('Open in new window?')) === null) //If the current search doesn't have the user choices applied
  26. { //Starts the if condition
  27. location.href = location.href += '&num=' + GM_getValue('Amount of results to Show') + '&newwindow=' + GM_getValue('Open in new window?'); //Redirect to add the user choices
  28. } //Finishes the if condition
  29. })();

QingJ © 2025

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