Skip to content

Instantly share code, notes, and snippets.

@glasslion
Last active July 17, 2019 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glasslion/d19208a16327aba8c28989df60512197 to your computer and use it in GitHub Desktop.
Save glasslion/d19208a16327aba8c28989df60512197 to your computer and use it in GitHub Desktop.
Extract Youtube playlist links
// 1. jQuerify
// 2. Run in console
links = ""
$('a.ytd-grid-video-renderer').each(function(){
links += 'https://www.youtube.com' + $(this).attr('href') + '\n'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment