Simple mass downloader

Simple mass downloader

A light batch download manager with flexible filtering/mass-renaming options that make downloading files a lot easier & productive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "/background/background.html"
  },
  "browser_action": {
    "default_icon": "ui/download.png",
    "default_popup": "ui/main.html",
    "default_title": "Simple mass downloader"
  },
  "description": "A light batch download manager with flexible filtering/mass-renaming options that make downloading files a lot easier & productive.",
  "icons": {
    "128": "ui/download.png"
  },
  "manifest_version": 2,
  "name": "Simple mass downloader",
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "content_scripts": [
    {
      "js": [
        "ui/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "tabs",
    "activeTab",
    "downloads",
    "downloads.open",
    "contextMenus",
    "clipboardRead",
    "webNavigation"
  ],
  "short_name": "SMD",
  "version": "0.831",
  "web_accessible_resources": [
    "ui/pixel.png",
    "ui/download.png",
    "ui/quick.html",
    "ui/close.svg"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}