Downloader for anything

Downloader for anything

download anything

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.png",
    "default_title": "downloader"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "download anything",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png"
  },
  "manifest_version": 2,
  "incognito": "spanning",
  "name": "Download",
  "short_name": "Download",
  "options_ui": {
    "page": "settings.html"
  },
  "permissions": [
    "downloads",
    "notifications",
    "*://*/*",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "storage",
    "management",
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.98.2",
  "web_accessible_resources": []
}