Inspect and view changes in Integrated Aria2 Download Manager 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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "_MSG_shortName__",
"version": "0.5.0",
"author": "Cudiph",
"description": "__MSG_extDesc__",
"default_locale": "en",
"permissions": [
"cookies",
"storage",
"unlimitedStorage",
"downloads"
],
"host_permissions": [
"<all_urls>",
"*://localhost/*",
"*://127.0.0.1/*"
],
"action": {
"default_title": "Show Aria2 download progress/history",
"default_popup": "src/popup/index.html",
"default_icon": "images/icon.png",
"theme_icons": [
{
"light": "images/icon-light.png",
"dark": "images/icon-dark.png",
"size": 16
},
{
"light": "images/icon-light.png",
"dark": "images/icon-dark.png",
"size": 32
},
{
"light": "images/icon-light.png",
"dark": "images/icon-dark.png",
"size": 128
}
]
},
"options_ui": {
"page": "src/options/index.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"commands": {
"toggle-intercept": {
"description": "Toggle intercept downloads"
},
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+Y"
},
"description": "Toggle popup"
}
},
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}