Downloadyze — a Multiple Page Downloader

Downloadyze — a Multiple Page Downloader

A simple downloader that can download multiple pages automatically. (Beta)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "version": "0.2",
  "default_locale": "en",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "browser_action": {
    "default_title": "__MSG_title__",
    "default_icon": {
      "16": "img/icon.png",
      "24": "img/icon.png",
      "32": "img/icon.png"
    },
    "default_popup": "html/popup.html"
  },
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/promisify.js",
      "js/increment.js",
      "js/auto.js",
      "js/action.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "commands": {
    "download": {
      "description": "Download"
    },
    "stop": {
      "description": "Stop"
    },
    "return": {
      "description": "Return to start"
    },
    "auto": {
      "description": "Auto pause or resume"
    },
    "multi1": {
      "description": "Multi Action Primary"
    },
    "multi2": {
      "description": "Multi Action Secondary"
    }
  },
  "permissions": [
    "<all_urls>",
    "downloads",
    "storage"
  ],
  "minimum_chrome_version": "77"
}