Nostr Connect

Nostr Signer Extension

Nostr Connect là gì?

Nostr Connect là một tiện ích mở rộng Chrome được phát triển bởi reyanostr001, 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

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

Tải xuống các tệp mở rộng Nostr Connect 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.

Designed by: https://njump.me/npub1r0rs5q2gk0e3dk3nlc7gnu378ec6cnlenqp8a3cjhyzu6f8k5sgs4sq9ac

Fork of nos2x by https://njump.me/npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6                    

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

Tên Nostr Connect Nostr Connect
ID ampjiinddmggbhpebhaegmjkbbeofoaj
URL Chính Thức https://chromewebstore.google.com/detail/nostr-connect/ampjiinddmggbhpebhaegmjkbbeofoaj
Mô tả Nostr Signer Extension
Kích Thước Tệp 693 KB
Số Lần Cài Đặt 102
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-11-23
Ngày Phát Hành 2023-11-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển reyanostr001
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/reyamir/nostr-connect
URL Trang Trợ Giúp https://github.com/reyamir/nostr-connect/issues
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
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:*\/*"
            ]
        }
    ]
}