Created
March 8, 2023 17:03
-
-
Save jonasfrey/3220686ec54ed968c4049668a05e3c2e to your computer and use it in GitHub Desktop.
youtube scroll to bottom of page
This file contains 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
// i often want to see how a channel has started, so i want to have a look at the oldest videos of a channel, | |
// yt removed the sort by date function so here is a script when pasted it will automatically scroll to the bottom of the page | |
// ctrl+shift+i > console > paste code | |
window.setInterval(function(){ | |
document.documentElement.scrollTo(0, document.documentElement.scrollHeight); | |
},10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment