Created
July 1, 2020 17:35
-
-
Save repen/4037705626dbe038b11762ae58ca099e to your computer and use it in GitHub Desktop.
vk download music script
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
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