Created
November 11, 2016 06:41
-
-
Save anonymous/997dcaac04646123b8907aefb42eacdd to your computer and use it in GitHub Desktop.
ASUS DownloadMaster batch downloads
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
// 1. open DownloadMaster in chrome | |
// 2. use the code in chrome console | |
urls = ["", ""] //urls array | |
addDownload = function(url) { | |
showPanel(); | |
document.getElementById("HTTP_usb_dm_url").value = url; | |
dm_add_status(); | |
} | |
for (var i = 0; i < urls.length; i++) { | |
addDownload(urls[i]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment