70 lines
1.8 KiB
JSON
70 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"default_locale": "en",
|
|
"name": "__MSG_extension_name__",
|
|
"description": "__MSG_extension_description__",
|
|
"version": "1.0",
|
|
"icons": {
|
|
"48": "images/icon-48.png",
|
|
"96": "images/icon-96.png",
|
|
"128": "images/icon-128.png",
|
|
"256": "images/icon-256.png",
|
|
"512": "images/icon-512.png"
|
|
},
|
|
"background": {
|
|
"page": "background.html",
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"js": [
|
|
"content.build.js"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "images/toolbar-16.png",
|
|
"19": "images/toolbar-19.png",
|
|
"32": "images/toolbar-32.png",
|
|
"38": "images/toolbar-38.png",
|
|
"48": "images/toolbar-48.png",
|
|
"72": "images/toolbar-72.png"
|
|
}
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
},
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"nostr.build.js",
|
|
"popup.build.js",
|
|
"options.build.js",
|
|
"options.build.css",
|
|
"options.html",
|
|
"delegation_wizard.html",
|
|
"delegation_wizard.build.js",
|
|
"delegation_wizard.build.css"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self' 'unsafe-eval'"
|
|
},
|
|
"browser_specific_settings": {
|
|
"safari": {
|
|
"strict_min_version": "15.4"
|
|
}
|
|
}
|
|
} |