Skip to content

Instantly share code, notes, and snippets.

@lazanet
Created December 14, 2018 14:19
Show Gist options
  • Save lazanet/80f918493782c1c70a65ad24e2220b72 to your computer and use it in GitHub Desktop.
Save lazanet/80f918493782c1c70a65ad24e2220b72 to your computer and use it in GitHub Desktop.
Download mp3's from Bootcamp
// PASTE FOLLOWING LINES IN CONSOLE (CTRL + SHIFT + J), WHILE ON BOOTCAMP PAGE
numSongs = 0;
document.querySelectorAll(".play_status").forEach(function (button) {
button.click();
document.querySelectorAll(".title-col")[numSongs++].innerHTML += "<a href='" + document.querySelector("audio").src + "'>download</a>";
alert("Continue?");
});
if (numSongs == 0) // if it is a single song page
{
document.querySelector(".playbutton").click();
document.querySelector(".send-as-gift").innerHTML += "<br /><a href='"+ document.querySelector("audio").src+"'>download</a>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment