Nostr Connect

Nostr Signer Extension

What is Nostr Connect?

Nostr Connect is a Chrome extension developed by reyanostr001, and its main feature is "Nostr Signer Extension".

Extension Screenshots

screenshot
screenshot

Download Nostr Connect Extension CRX File

Download Nostr Connect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Designed by: https://njump.me/npub1r0rs5q2gk0e3dk3nlc7gnu378ec6cnlenqp8a3cjhyzu6f8k5sgs4sq9ac

Fork of nos2x by https://njump.me/npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6                    

Extension Basic Information

Name Nostr Connect Nostr Connect
ID ampjiinddmggbhpebhaegmjkbbeofoaj
Official URL https://chromewebstore.google.com/detail/nostr-connect/ampjiinddmggbhpebhaegmjkbbeofoaj
Description Nostr Signer Extension
File Size 693 KB
Installation Count 102
Current Version 0.1.0
Last Updated 2023-11-23
Publish Date 2023-11-23
Rating 5.00/5 Total 1 Ratings
Developer reyanostr001
Email [email protected]
Payment Type free
Extension Website https://github.com/reyamir/nostr-connect
Help Page URL https://github.com/reyamir/nostr-connect/issues
Privacy Policy Page URL https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nostr Connect",
    "description": "Nostr Signer Extension",
    "version": "0.1.0",
    "homepage_url": "https:\/\/github.com\/reyamir\/nostr-connect",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "\/build\/background.build.js"
    },
    "action": {
        "default_title": "Nostr Connect",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/build\/content-script.build.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nostr-provider.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:*\/*"
            ]
        }
    ]
}