Skip to content

Instantly share code, notes, and snippets.

Created November 11, 2016 06:41
Show Gist options
  • Save anonymous/997dcaac04646123b8907aefb42eacdd to your computer and use it in GitHub Desktop.
Save anonymous/997dcaac04646123b8907aefb42eacdd to your computer and use it in GitHub Desktop.
ASUS DownloadMaster batch downloads
// 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