- Fix project name from "Plebian" to "Plebeian" throughout codebase
- Replace gooti logo with Plebeian Market logo across all screens
- Update color scheme to match Plebeian Market (pink accent #ff3eb5)
- Add IBM Plex Mono fonts and Reglisse heading font
- Center vault create/import screen content vertically
- Reduce spacing on sync preference screen to prevent scrolling
- Add Enter key support on vault login password field
- Update options page with new logo and color scheme
- Bump version to 0.0.5
Files modified:
- package.json (version bump, name fix)
- projects/*/public/{logo.svg,options.html,manifest.json}
- projects/*/src/app/components/vault-*/*.{html,scss}
- projects/*/src/app/components/welcome/*.html
- projects/common/src/lib/styles/*.scss
- Various component files for branding updates
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
65 lines
1.7 KiB
Markdown
65 lines
1.7 KiB
Markdown
# Plebeian Signer
|
|
|
|
## Nostr Identity Manager & Signer
|
|
|
|
Plebeian Signer is a browser extension for managing multiple [Nostr](https://github.com/nostr-protocol/nostr) identities and for signing events on web apps without having to give them your keys.
|
|
|
|
It implements these mandatory [NIP-07](https://github.com/nostr-protocol/nips/blob/master/07.md) methods:
|
|
|
|
```typescript
|
|
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:
|
|
|
|
```typescript
|
|
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
|
|
|
|
1. within Chrome go to `chrome://extensions`
|
|
2. ensure "developer mode" is enabled on the top right
|
|
3. click on "Load unpackaged"
|
|
4. select the `dist/chrome` folder
|
|
|
|
## 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
|
|
|
|
1. within Firefox go to `about://debugging`
|
|
2. click "This Firefox" on the left
|
|
3. click on "Load Temporary Add-on..."
|
|
4. select the `dist/firefox` folder
|
|
|
|
---
|
|
|
|
LICENSE: Public Domain
|