Created
December 14, 2018 14:19
-
-
Save lazanet/80f918493782c1c70a65ad24e2220b72 to your computer and use it in GitHub Desktop.
Download mp3's from Bootcamp
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
// 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