nos2x

Nostr Signer Extension

nos2xคืออะไร?

nos2x เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fiatjaf และคุณลักษณะหลักของมันคือ "Nostr Signer Extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย nos2x

ดาวน์โหลดไฟล์ส่วนขยาย nos2x ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://github.com/fiatjaf/nos2x
URL หน้านโยบายความเป็นส่วนตัว 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:*\/*"
            ]
        }
    ]
}