Nostr Connect

Nostr Signer Extension

Nostr Connect क्या है?

Nostr Connect reyanostr001 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Nostr Signer Extension"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nostr Connect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Nostr Connect Nostr Connect
ID ampjiinddmggbhpebhaegmjkbbeofoaj
आधिकारिक URL https://chromewebstore.google.com/detail/nostr-connect/ampjiinddmggbhpebhaegmjkbbeofoaj
विवरण Nostr Signer Extension
फ़ाइल का आकार 693 KB
स्थापना संख्या 102
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2023-11-23
प्रकाशन तिथि 2023-11-23
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर reyanostr001
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/reyamir/nostr-connect
सहायता पृष्ठ URL https://github.com/reyamir/nostr-connect/issues
गोपनीयता नीति पृष्ठ URL https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
समर्थित भाषाएँ 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:*\/*"
            ]
        }
    ]
}