Skip to content

Instantly share code, notes, and snippets.

@urielaero
urielaero / spotify_to_text.js
Created March 22, 2022 04:58
Spotify Playlist To Text 21-mar-2022
// CTRL + SHIFT + C and run:
const songs = [...document.querySelectorAll("[role='row']")].map((e) => {
const childs = e.firstChild.childNodes[1];
if (!childs) { return ''; }
const song = e.firstChild.childNodes[1].childNodes[1];
return song.firstChild.textContent + " - " + song.childNodes[1].textContent;
}).join("\r\n")
console.log(songs);