-
-
Save xd547/8f4f7cbad94c1c3ea4878cbb14d0b31e 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