Skip to content

Instantly share code, notes, and snippets.

@pabliqe
Last active January 28, 2026 22:15
Show Gist options
  • Select an option

  • Save pabliqe/50408d797e2a3425628ef56ee7f54ae5 to your computer and use it in GitHub Desktop.

Select an option

Save pabliqe/50408d797e2a3425628ef56ee7f54ae5 to your computer and use it in GitHub Desktop.
Automatic Scroll for Chrome/Safari
javascript:(function(){
/* tired of scrolling? try this... */
var lazyScroll = setInterval(function() {
window.scrollTo(0, window.pageYOffset+1);
}, 0);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment