chore: add privacry policy

This commit is contained in:
Ren Amamiya
2026-04-08 17:32:38 +07:00
parent 4cc2add220
commit 015faf9cf4
2 changed files with 21 additions and 12 deletions

View File

@@ -3,14 +3,7 @@
"description": "Nostr Signer Extension",
"version": "1.0.0",
"homepage_url": "https://git.reya.su/reya/nostr-connect",
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"data_collection_permissions": {
"required": ["none"]
}
}
},
"manifest_version": 3,
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
@@ -19,19 +12,25 @@
},
"options_page": "options.html",
"background": {
"scripts": ["background.build.js"]
"service_worker": "background.build.js"
},
"browser_action": {
"action": {
"default_title": "Nostr Signer",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.build.js"]
"js": ["content-script.build.js"],
"all_frames": true
}
],
"permissions": ["storage", "activeTab", "windows"],
"optional_permissions": ["notifications"],
"web_accessible_resources": ["nostr-provider.js"]
"web_accessible_resources": [
{
"resources": ["nostr-provider.js"],
"matches": ["https://*/*", "http://localhost:*/*"]
}
]
}