Skip to content

eyeblech/aut0scroll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

aut0scroll.js

(function autoScroll() {
    let scrollAmount = 1; // Number of pixels to scroll by each step
    let scrollDelay = 15; // Delay in milliseconds (15ms)

    setInterval(() => {
        window.scrollBy(0, scrollAmount);
    }, scrollDelay);
})();

HowTO

  • open up DevTools -> Console
  • paste the code
aut0scroll.mov