Google Infinite Scroll 2

Enables infinite scroll on Google Search

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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;
    }
});