nos2x

Nostr Signer Extension

nos2x là gì?

nos2x là một tiện ích mở rộng Chrome được phát triển bởi fiatjaf, và tính năng chính của nó là "Nostr Signer Extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng nos2x

Tải xuống các tệp mở rộng nos2x dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Implements NIP-07.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
URL Chính Thức https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Mô tả Nostr Signer Extension
Kích Thước Tệp 677 KB
Số Lần Cài Đặt 5,339
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2023-08-07
Ngày Phát Hành 2022-01-28
Đánh Giá 4.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển fiatjaf
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fiatjaf/nos2x
URL Trang Trợ Giúp https://github.com/fiatjaf/nos2x
URL Trang Chính Sách Bảo Mật https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Ngôn Ngữ Được Hỗ Trợ 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:*\/*"
            ]
        }
    ]
}