36 lines
812 B
JSON
36 lines
812 B
JSON
{
|
|
"name": "nos2x",
|
|
"description": "Nostr Signer Extension",
|
|
"version": "1.0.1",
|
|
"homepage_url": "https://github.com/fiatjaf/nos2x",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"16": "icons/16x16.png",
|
|
"32": "icons/32x32.png",
|
|
"48": "icons/48x48.png",
|
|
"128": "icons/128x128.png"
|
|
},
|
|
"options_page": "options.html",
|
|
"background": {
|
|
"scripts": [
|
|
"background.build.js"
|
|
],
|
|
"persistent": false
|
|
},
|
|
"browser_action": {
|
|
"default_title": "nos2x",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": [
|
|
"content-script.build.js"
|
|
]
|
|
}],
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"web_accessible_resources": ["nostr-provider.js"],
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
|
|
}
|