Skip to content

Instantly share code, notes, and snippets.

@yoogottamk
Last active September 20, 2021 11:35
Show Gist options
  • Save yoogottamk/a1d50ea673b2e9d60e474ad34d379330 to your computer and use it in GitHub Desktop.
Save yoogottamk/a1d50ea673b2e9d60e474ad34d379330 to your computer and use it in GitHub Desktop.
YT Music Liked Playlist to CSV
/*
1. open https://music.youtube.com/playlist?list=LM
2. open console
3. copy paste
*/
$$("ytmusic-responsive-list-item-renderer yt-formatted-string").reduce((songList, songPart, i) => {
((i + 1) % 4) ? songList[songList.length - 1] += songPart.textContent + "," : songList.push("");
return songList;
}, [""]).map(x => x.slice(0, -1)).join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment