44 lines
954 B
JSON
44 lines
954 B
JSON
{
|
||
"manifest_version": 3,
|
||
"name": "Thing Extension",
|
||
"version": "0.2.0",
|
||
"description": "发送浏览器下载到Thing Downloader(aria2),嗅探网页资源。",
|
||
"icons": {
|
||
"16": "icons/icon-16.png",
|
||
"48": "icons/icon-48.png",
|
||
"128": "icons/icon-128.png"
|
||
},
|
||
"permissions": [
|
||
"downloads",
|
||
"storage",
|
||
"notifications",
|
||
"webRequest",
|
||
"webNavigation",
|
||
"contextMenus",
|
||
"tabs",
|
||
"scripting"
|
||
],
|
||
"host_permissions": [
|
||
"<all_urls>"
|
||
],
|
||
"background": {
|
||
"service_worker": "background.js"
|
||
},
|
||
"action": {
|
||
"default_popup": "popup.html",
|
||
"default_icon": {
|
||
"16": "icons/icon-16.png",
|
||
"48": "icons/icon-48.png",
|
||
"128": "icons/icon-128.png"
|
||
},
|
||
"default_title": "Thing Extension"
|
||
},
|
||
"options_ui": {
|
||
"page": "popup.html",
|
||
"open_in_tab": false
|
||
},
|
||
"content_security_policy": {
|
||
"extension_pages": "script-src 'self'; object-src 'self'"
|
||
}
|
||
}
|