Auto Scroll Down

Scrolls down a webpage automatically until stopped

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

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

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         Auto Scroll Down
// @description  Scrolls down a webpage automatically until stopped
// @match        *://*/*
// @version 0.0.1.20250904031349
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
    let intervalId;
    
    // Start scrolling down
    function startScrolling() {
        intervalId = setInterval(() => {
            window.scrollBy(0, 10000); // Scroll down by 100px
        }, 10); // Repeat every 100ms
    }

    // Stop scrolling
    function stopScrolling() {
        clearInterval(intervalId);
    }

    // Start the scrolling on page load
    startScrolling();

    // Attach an event listener to stop scrolling by pressing "Esc"
    document.addEventListener('keydown', function(event) {
        if (event.key === 'Escape') { // Press Escape to stop scrolling
            stopScrolling();
        }
    });
})();