Download with Aria2

Download with Aria2

The Aria2 Download Manager for Firefox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "4.10.0.2694",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "downloads",
    "tabs",
    "cookies",
    "notifications",
    "storage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "default_locale": "en",
  "background": {
    "scripts": [
      "libs/aria2.js",
      "background.js",
      "crossbrowser.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/message.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": {
      "24": "icons/24.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "options_ui": {
    "page": "pages/options/options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+2"
      }
    },
    "open_options": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "__MSG_shortcut_options__"
    },
    "open_new_download": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "__MSG_shortcut_newdld__"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "firefox@downloadWithAria2"
    }
  },
  "developer": {
    "name": "jc3213",
    "url": "https://github.com/jc3213/download_with_aria2"
  }
}