Download Manager

Download Manager

Easy to manage downloaded files

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.1.3",
  "manifest_version": 2,
  "icons": {
    "16": "img/icon16.png",
    "19": "img/icon19.png",
    "38": "img/icon38.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "Alt+X"
      },
      "description": "__MSG_openPopupSetting__"
    }
  },
  "options_page": "options.html",
  "default_locale": "en",
  "optional_permissions": [
    "management"
  ],
  "permissions": [
    "downloads",
    "downloads.open",
    "downloads.shelf",
    "storage",
    "notifications",
    "contextMenus",
    "background"
  ],
  "homepage_url": "https://github.com/xinghaix/download-manager",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "minimum_chrome_version": "39",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}