- Update release command to use standard semver with v prefix (v0.0.0 format) - Add seamless migration from legacy non-prefixed versions (0.0.x -> v0.0.x) - Document version format in release command instructions - Bump version from 0.0.7 to v0.0.8 in package.json Files modified: - .claude/commands/release.md - package.json 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1020 B
JSON
55 lines
1020 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Plebeian Signer",
|
|
"description": "Nostr Identity Manager & Signer",
|
|
"version": "v0.0.8",
|
|
"homepage_url": "https://git.mleku.dev/mleku/plebeian-signer",
|
|
"options_page": "options.html",
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"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"
|
|
}
|
|
}
|
|
}
|