nos2x

Nostr Signer Extension

nos2xとは何ですか?

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

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

screenshot
screenshot
screenshot
screenshot

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

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
Eメール [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:*\/*"
            ]
        }
    ]
}