Examine source code of Download with Aria2

Inspect and view changes in Download with Aria2 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "4.15.0.3266",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "downloads",
    "tabs",
    "notifications",
    "storage",
    "webNavigation",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/message.js"
      ],
      "run_at": "document_start"
    }
  ],
  "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_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__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}