Google Infinite Scroll 2

Enables infinite scroll on Google Search

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Google Infinite Scroll 2
// @description  Enables infinite scroll on Google Search
// @match        *://www.google.com/search*
// @run-at       document-end
// @version 0.0.1.20250305073311
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

let pageNumber = 1;
let isLoading = false;
let hasMore = true;

const fetchNextPage = async () => {
    const baseUrl = new URL(window.location.href);
    baseUrl.searchParams.set('start', pageNumber * 10);
    const response = await fetch(baseUrl.toString());
    const text = await response.text();
    const newDoc = new DOMParser().parseFromString(text, 'text/html');

    const container = document.createElement('div');
    container.id = `page-${pageNumber}`;
    container.style.marginTop = '20px';
    newDoc.querySelectorAll('#rso > div').forEach(result => container.appendChild(result.cloneNode(true)));

    const lastAddedPage = document.querySelector(`#page-${pageNumber - 1}`) || document.querySelector('#botstuff');
    lastAddedPage.after(container);

    hasMore = !!newDoc.querySelector('#pnnext');
    if (hasMore) pageNumber++;
};

window.addEventListener('scroll', async () => {
    if (!isLoading && hasMore && window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 1000) {
        isLoading = true;
        await fetchNextPage();
        isLoading = false;
    }
});