578f3e08ff7f19a031d7e1e3c9ddfdc479773d7c
- Add NIP-65 relay list service to fetch kind 10002 events from relays - Replace configurable relay page with read-only NIP-65 relay display - Update identity page to show display name and username in same badge - Use reglisse heading font for titles throughout the UI - Navigate to You page after vault unlock instead of identities list - Add autofocus to vault password input field - Add profile metadata service for fetching kind 0 events - Add readonly mode to relay-rw component Files modified: - package.json (version bump to 0.0.6) - projects/common/src/lib/services/relay-list/relay-list.service.ts (new) - projects/common/src/lib/services/profile-metadata/profile-metadata.service.ts (new) - projects/common/src/lib/constants/fallback-relays.ts (new) - projects/*/src/app/components/home/identity/* (UI improvements) - projects/*/src/app/components/edit-identity/relays/* (NIP-65 display) - projects/*/src/app/components/vault-login/* (autofocus, navigation) - projects/common/src/lib/styles/* (heading fonts) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Plebeian Signer
Nostr Identity Manager & Signer
Plebeian Signer is a browser extension for managing multiple Nostr identities and for signing events on web apps without having to give them your keys.
It implements these mandatory NIP-07 methods:
async window.nostr.getPublicKey(): string
async window.nostr.signEvent(event: { created_at: number, kind: number, tags: string[][], content: string }): Event
It also implements these optional methods:
async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} }
async window.nostr.nip04.encrypt(pubkey, plaintext): string
async window.nostr.nip04.decrypt(pubkey, ciphertext): string
async window.nostr.nip44.encrypt(pubkey, plaintext): string
async window.nostr.nip44.decrypt(pubkey, ciphertext): string
The repository is configured as monorepo to hold the extensions for Chrome and Firefox.
Develop Chrome Extension
To build and run the Chrome extension from this code:
git clone https://git.mleku.dev/mleku/plebeian-signer
cd plebeian-signer
npm ci
npm run build:chrome
then
- within Chrome go to
chrome://extensions - ensure "developer mode" is enabled on the top right
- click on "Load unpackaged"
- select the
dist/chromefolder
Develop Firefox Extension
To build and run the Firefox extension from this code:
git clone https://git.mleku.dev/mleku/plebeian-signer
cd plebeian-signer
npm ci
npm run build:firefox
then
- within Firefox go to
about://debugging - click "This Firefox" on the left
- click on "Load Temporary Add-on..."
- select the
dist/firefoxfolder
LICENSE: Public Domain
Languages
TypeScript
71.3%
HTML
14.8%
SCSS
11.7%
Python
1.5%
JavaScript
0.6%