Skip to content

Instantly share code, notes, and snippets.

@xd547
Forked from anonymous/downloads.js
Created November 11, 2016 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xd547/8f4f7cbad94c1c3ea4878cbb14d0b31e to your computer and use it in GitHub Desktop.
Save xd547/8f4f7cbad94c1c3ea4878cbb14d0b31e 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