nos2x

Nostr Signer Extension

ما هو nos2x؟

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

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة nos2x

قم بتنزيل ملفات الامتداد nos2x بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

Implements NIP-07.                    

معلومات أساسية عن التمديد

الاسم nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
عنوان URL الرسمي https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
الوصف Nostr Signer Extension
حجم الملف 677 KB
عدد التثبيتات 5,339
النسخة الحالية 2.2.0
آخر تحديث 2023-08-07
تاريخ النشر 2022-01-28
تقييم 4.82/5 مجموع تقييمات 11
المطور fiatjaf
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/fiatjaf/nos2x
عنوان صفحة المساعدة https://github.com/fiatjaf/nos2x
عنوان صفحة سياسة الخصوصية https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "nos2x",
    "description": "Nostr Signer Extension",
    "version": "2.2.0",
    "homepage_url": "https:\/\/github.com\/fiatjaf\/nos2x",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.build.js"
    },
    "action": {
        "default_title": "nos2x",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.build.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "nostr-provider.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/localhost:*\/*"
            ]
        }
    ]
}