- Remove sync preference welcome page, default to no-sync - Redesign vault-create home with nickname + nsec input - Add generate key button, visibility toggle, clipboard copy - Add vault file import with persistent snapshot list - Navigate to profile view after identity creation - Fix router state access for identity data passing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Plebeian Signer",
|
|
"description": "Nostr Identity Manager & Signer",
|
|
"version": "1.1.6",
|
|
"homepage_url": "https://github.com/PlebeianApp/plebeian-signer",
|
|
"options_page": "options.html",
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
|
|
},
|
|
"action": {
|
|
"default_popup": "index.html",
|
|
"default_icon": {
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"run_at": "document_start",
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"plebian-signer-content-script.js"
|
|
],
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"plebian-signer-extension.js"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "plebian-signer@mleku.dev",
|
|
"data_collection_permissions": {
|
|
"required": [
|
|
"none"
|
|
],
|
|
"optional": []
|
|
}
|
|
}
|
|
}
|
|
}
|