Nostr Connect

Nostr Signer Extension

Nostr Connectとは何ですか?

Nostr Connectはreyanostr001によって開発されたChromeの拡張機能で、その主な機能は「Nostr Signer Extension」です。

拡張機能のスクリーンショット

screenshot
screenshot

Nostr Connect拡張機能のCRXファイルをダウンロード

Nostr Connect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/reyamir/nostr-connect
ヘルプページのURL https://github.com/reyamir/nostr-connect/issues
プライバシーポリシーページのURL 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:*\/*"
            ]
        }
    ]
}