Created
February 23, 2020 16:53
-
-
Save believer/d7feb7090713b38e88b2643d034cc19d to your computer and use it in GitHub Desktop.
Get playlist as csv from soundtrack.net
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
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