8000 GitHub - benalleng/nos2x: nostr signer extension -Redesign
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from Flydexo/nos2x

nostr signer extension -Redesign

Notifications You must be signed in to change notification settings

benalleng/nos2x

 
 

Repository files navigation

nos2x

notes and other stuff signed by an extension

Nostr Signer Extension

This allows you to sign Nostr events on web-apps without having to give them your keys.

It provides a window.nostr object which has the following methods:

async window.nostr.getPublicKey(): string // returns your public key as hex
async window.nostr.signEvent(event): Event // returns the full event object signed
async window.nostr.getRelays(): { [url: string]: RelayPolicy } // returns a map of relays
async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext+iv as specified in nip04
async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext+iv as specified in nip04

Demo Video

screencast.mp4

Install

Develop

To run the plugin from this code:

git clone https://github.com/fiatjaf/nos2x
cd nos2x
git checkout chromium                       # or git checkout firefox
yarn                                        # or use npm or pnpm
yarn run build

then ...

  • Chromium:
    1. go to chrome://extensions
    2. make sure, "developer mode" is enabled on the top right
    3. "Load unpackaged"
    4. select the extension/ folder
  • Firefox:
    1. go to about:debugging
    2. "This Firefox"
    3. "Load Temporary Add-on..."
    4. select any file from the extension/ folder

Screenshots


LICENSE: public domain.

Icon made by Freepik from www.flaticon.com.

About

nostr signer extension -Redesign

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.2%
  • HTML 2.8%
0