Created
April 20, 2018 22:55
-
-
Save alana314/9307948882085c958c5b9496def940b7 to your computer and use it in GitHub Desktop.
Auto scroll website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Paste this in console (in another window) to auto-scroll a website, useful for video capturing. | |
var i = 0;setInterval(function(){window.scrollTo(0, i);i = i+ 2;}, 5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment