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

10
privacy-policy.md Normal file
View File

@@ -0,0 +1,10 @@
Privacy Policy
==============
**Nostr Signer** doesn't collect any personal data, doesn't track websites you visit, doesn't collect any form of usage analytics, doesn't sends any information to any service over the internet -- in fact, it doesn't even have a server anywhere, it's just an extension installed in your computer.
The only places **Nostr Signer** sends information to are the URL endpoints you define in the settings page for the extension, the URLs that identify the Lightning nodes you want to talk to, which **Nostr Signer** assumes are under your control or under the control of a third-party you trust.
**Nostr Signer** stores only the information you explicitly write in the settings page: _node URL_, _username_ and _password_ (where applicable). That information, however, is only stored in your own browser, using the _local_ storage mode, not the _synced_ storage mode that saves data to a browser-determined sync server. So if the guarantees offered by the browser itself hold true _that information never leaves your browser_.
For more information on the browser guarantees on which **Nostr Signer** depends, please read Firefox's [Privacy Policy](https://www.mozilla.org/en-US/privacy/websites/) and [Terms of Service](https://www.mozilla.org/en-US/about/legal/terms/mozilla/) and Google Chrome [Privacy Policy](https://policies.google.com/privacy) and [Terms of Service](https://ssl.gstatic.com/chrome/webstore/intl/en-US/gallery_tos.html).