Nostr Connect

Nostr Signer Extension

ما هو Nostr Connect؟

Nostr Connect هو إضافة Chrome تم تطويرها بواسطة reyanostr001، والميزة الرئيسية لها هي "Nostr Signer Extension".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Nostr Connect

قم بتنزيل ملفات الامتداد Nostr Connect بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://github.com/reyamir/nostr-connect/issues
عنوان صفحة سياسة الخصوصية 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:*\/*"
            ]
        }
    ]
}