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
// Extract soundcloud url from a playlist | |
//open the soundcloud playlist in the browser and put this in the console of the brwoser | |
const tracks = document.getElementsByClassName("trackItem__trackTitle"); | |
for (let i = 0; i < tracks.length; i++) { | |
console.log(tracks[i].href) | |
} | |
OlderNewer