Created
January 17, 2025 15:29
-
-
Save RepComm/646d084b7fee21780857f7e3179d1d0a to your computer and use it in GitHub Desktop.
Youtube Download Playlist CSV bookmarklet
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
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