Skip to content

Instantly share code, notes, and snippets.

@repen
Created July 1, 2020 17:35
Show Gist options
  • Save repen/4037705626dbe038b11762ae58ca099e to your computer and use it in GitHub Desktop.
Save repen/4037705626dbe038b11762ae58ca099e to your computer and use it in GitHub Desktop.
vk download music script
var all = document.querySelectorAll(".downloadButton.qweqwe");
var all = document.querySelectorAll(".audio_row__inner");
for (var i = 0; i < 10; i++) {
var res = all[i].querySelector("._audio_row__duration").innerHTML;
if (res.length === 4)
{
var btn = all[i].querySelector(".downloadButton.qweqwe");
btn.click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment