WebExtension for Motrix download manager
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_appName__",
"description": "__MSG_appDescription__",
"version": "23.12.10",
"short_name": "__MSG_appShortName__",
"browser_specific_settings": {
"gecko": {
"id": "{9ce99d37-4a5e-409a-a04b-0f3f50491bc7}"
}
},
"manifest_version": 3,
"default_locale": "en",
"homepage_url": "https://github.com/gautamkrishnar/motrix-webextension",
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"background": {
"scripts": [
"scripts/background.js"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"browser_style": true,
"default_icon": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"images/*",
"scripts/*",
"styles/*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"downloads",
"downloads.shelf",
"notifications",
"storage",
"contextMenus",
"offscreen",
"cookies"
],
"host_permissions": [
"<all_urls>"
]
}