Skip to content

Instantly share code, notes, and snippets.

@czyang
Forked from xd547/downloads.js
Created November 11, 2016 10:11
Show Gist options
  • Save czyang/adc872cb48f526ff00e72d208c69aa32 to your computer and use it in GitHub Desktop.
Save czyang/adc872cb48f526ff00e72d208c69aa32 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