- Rename all gooti-* files to plebian-signer-* across Chrome and Firefox - Rename GootiMetaHandler to SignerMetaHandler in common library - Update all references to use new naming convention - Add CLAUDE.md with project build/architecture documentation - Add Claude Code release command tailored for this npm/Angular project - Add NWC-IMPLEMENTATION.md design document - Add Claude skills for nostr, typescript, react, svelte, and applesauce libs - Update README and various component templates with new branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Plebian Signer - Nostr Identity Manager & Signer",
|
|
"description": "Manage and switch between multiple identities while interacting with Nostr apps",
|
|
"version": "0.0.4",
|
|
"homepage_url": "https://git.mleku.dev/mleku/plebeian-signer",
|
|
"options_page": "options.html",
|
|
"permissions": [
|
|
"windows",
|
|
"storage"
|
|
],
|
|
"action": {
|
|
"default_popup": "index.html",
|
|
"default_icon": "gooti-with-bg.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "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": [
|
|
"https://*/*",
|
|
"http://localhost:*/*",
|
|
"http://0.0.0.0:*/*",
|
|
"http://127.0.0.1:*/*",
|
|
"http://*.localhost/*"
|
|
]
|
|
}
|
|
]
|
|
}
|