Skip to content

Instantly share code, notes, and snippets.

@jabyrd3
Created May 16, 2017 06:12
Show Gist options
  • Save jabyrd3/9e4dfe743c93346a8499541c858cf77e to your computer and use it in GitHub Desktop.
Save jabyrd3/9e4dfe743c93346a8499541c858cf77e to your computer and use it in GitHub Desktop.
get artists from spotify playlist markup in chrome
Array.from(document.querySelectorAll('.tracklist-row'))
.map(song => `${song.innerText.split('\n')[1]}, ${song.innerText.split('\n')[2].split('•')[0]}, ${song.innerText.split('\n')[2].split('•')[1]}`)
.reduce((acc, val) => acc += `${val}\n`, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment