Last active
January 12, 2025 15:24
-
-
Save the100rabh/fbadf2d140646e047db74693afe5614d to your computer and use it in GitHub Desktop.
Google Search 100 Userscript for Greasemonkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Google Search 100 | |
| // @description Gives 100 search results instead of 10 | |
| // @include http*://images.google.*/* | |
| // @include http*://*.google.*/images?* | |
| // @include http*://*.google.*/imgres?* | |
| // @include http*://*.google.*/imghp* | |
| // @include http*://*.google.*/search* | |
| // ==/UserScript== | |
| (function () { | |
| if ((/q=/).test(document.location.href)) { | |
| if (!(/&num=100/).test(document.location.href)) { | |
| window.location.replace(window.location+"&num=100"); | |
| } | |
| } | |
| })() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment