Skip to content

Instantly share code, notes, and snippets.

@jonasfrey
Created March 8, 2023 17:03
Show Gist options
  • Save jonasfrey/3220686ec54ed968c4049668a05e3c2e to your computer and use it in GitHub Desktop.
Save jonasfrey/3220686ec54ed968c4049668a05e3c2e to your computer and use it in GitHub Desktop.
youtube scroll to bottom of page
// 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