diff --git a/.gitignore b/.gitignore index a6bb1fe..e906154 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules *.build.js +*.zip diff --git a/README.md b/README.md index 931766d..42c0a24 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # nos2x -### notes and other stuff signed by an extension) +### notes and other stuff signed by an extension ## Nostr Signer Extension @@ -12,6 +12,13 @@ async window.nostr.getPublicKey(): string // returns your public key as hex async window.nostr.signEvent(event): string // returns the signature as hex ``` +## Screenshots + +![](screenshot1.png) +![](screenshot2.png) +![](screenshot3.png) +![](screenshot4.png) + --- LICENSE: public domain. diff --git a/package.json b/package.json index 7d565d0..728373a 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ }, "scripts": { "build": "./build.js", - "watch": "ag -l --js | entr ./build.js" + "watch": "ag -l --js | entr ./build.js", + "package": "cd extension; zip -r archive *; cd ..; mv extension/archive.zip ./nos2x.zip" } } diff --git a/screenshot1.png b/screenshot1.png new file mode 100644 index 0000000..76c6eea Binary files /dev/null and b/screenshot1.png differ diff --git a/screenshot2.png b/screenshot2.png new file mode 100644 index 0000000..ef39c30 Binary files /dev/null and b/screenshot2.png differ diff --git a/screenshot3.png b/screenshot3.png new file mode 100644 index 0000000..1046e0e Binary files /dev/null and b/screenshot3.png differ diff --git a/screenshot4.png b/screenshot4.png new file mode 100644 index 0000000..a2c843a Binary files /dev/null and b/screenshot4.png differ