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
官方網址 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:*\/*"
            ]
        }
    ]
}