Skip to content

Instantly share code, notes, and snippets.

@RepComm
Created January 17, 2025 15:29
Show Gist options
  • Save RepComm/646d084b7fee21780857f7e3179d1d0a to your computer and use it in GitHub Desktop.
Save RepComm/646d084b7fee21780857f7e3179d1d0a to your computer and use it in GitHub Desktop.
Youtube Download Playlist CSV bookmarklet
javascript:(()=>{let output = 'action,url\n';for(anchor of document.querySelectorAll("a#video-title%22)){output+=%60allow,${anchor.href}\n%60;}const%20dl=document.createElement(%22a%22);dl.setAttribute(%22href%22,%22data:text/plain;charset=utf-8,%22+encodeURIComponent(output));dl.setAttribute(%22download%22,%22playlist.csv%22);dl.style.display%20=%20%22none%22;dl.click();})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment