Send to Aria2 WE

Send to Aria2 WE

Send to Aria2 Right click on the download link, and select "Send to Aria2" options. JSON-RPC address need to be configured for work. Secret token is supported in versions 0.2. "Send to Aria2 Save As ..." opens a dialog to rename the outputfile.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Send to Aria2 WE",
  "description": "Send The Download Link to Your Aria2 server's json-rpc api.\nThe api address should be configed at first in the preference page, and the aria2 rpc-secret is also supported.",
  "version": "0.3.2resigned1",
  "homepage_url": "https://github.com/wadefelix/SendToAria2",
  "developer": {
    "name": "Ren Wei"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "storage",
    "notifications"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9cc772b3-94a0-42b7-a777-bc9ff32726b7}"
    }
  }
}