Skip to content

Instantly share code, notes, and snippets.

@believer
Created February 23, 2020 16:53
Show Gist options
  • Save believer/d7feb7090713b38e88b2643d034cc19d to your computer and use it in GitHub Desktop.
Save believer/d7feb7090713b38e88b2643d034cc19d to your computer and use it in GitHub Desktop.
Get playlist as csv from soundtrack.net
Array.apply(
null,
document.querySelectorAll('.cbox_table tbody tr:not(:last-child)')
)
.map((node, i) => {
var title = node.querySelector('td:nth-child(2)').innerText.trim()
var playtime = node.querySelector('td:nth-child(3)').innerText.trim()
return `${i + 1};${title};${playtime}`
})
.join('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment