downthemall/manifest.json
lordwelch 3deac4cda0 First commit of tdl
Initial round of re-branding, I temporarily am using the dta icon just
rotated 180, waiting for a permanent icon to use
Removed the initial create tab for dta but left any download links as is
Added webextension-polyfill-ts to enable retrieval of cookies
Removed all access and preferences to the download manager as it is not
relevant in this fork
2021-03-27 21:26:37 -07:00

75 lines
1.6 KiB
JSON

{
"manifest_version": 2,
"name": "TraitorousDownloading!",
"version": "4.2.6",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/lordwelch/downthemall",
"author": "lordwelch",
"default_locale": "en",
"content_security_policy": "script-src 'self'; style-src 'self' 'unsafe-inline'; img-src data: blob: 'self'; connect-src data: blob: http: https: 'self'; default-src 'self'",
"icons": {
"16": "style/icon16.png",
"32": "style/icon32.png",
"48": "style/icon48.png",
"64": "style/icon64.png",
"128": "style/icon128.png",
"256": "style/icon256.png"
},
"permissions": [
"<all_urls>",
"contextMenus",
"cookies",
"downloads",
"downloads.open",
"downloads.shelf",
"history",
"menus",
"notifications",
"sessions",
"storage",
"tabs",
"theme",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"bundles/common.js",
"bundles/background.js"
]
},
"browser_action": {
"browser_style": true,
"default_popup": "windows/popup.html",
"default_icon": {
"16": "style/icon16.png",
"32": "style/icon32.png",
"48": "style/icon48.png",
"64": "style/icon64.png",
"128": "style/icon128.png",
"256": "style/icon256.png"
},
"default_title": "TraitorousDownloading!"
},
"options_ui": {
"open_in_tab": true,
"page": "/windows/prefs.html"
},
"browser_specific_settings": {
"gecko": {
"id": "downloading@traitorousenterprises.net",
"strict_min_version": "67.0"
}
}
}