Skip to content

Instantly share code, notes, and snippets.

@the100rabh
Last active January 12, 2025 15:24
Show Gist options
  • Select an option

  • Save the100rabh/fbadf2d140646e047db74693afe5614d to your computer and use it in GitHub Desktop.

Select an option

Save the100rabh/fbadf2d140646e047db74693afe5614d to your computer and use it in GitHub Desktop.
Google Search 100 Userscript for Greasemonkey
// ==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