nos2x

Nostr Signer Extension

Apa itu nos2x?

nos2x adalah ekstensi Chrome yang dikembangkan oleh fiatjaf, dan fitur utamanya adalah "Nostr Signer Extension".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi nos2x

Unduh file ekstensi nos2x dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Implements NIP-07.                    

Informasi Dasar Ekstensi

Nama nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
URL Resmi https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Deskripsi Nostr Signer Extension
Ukuran File 677 KB
Jumlah Instalasi 5,339
Versi Saat Ini 2.2.0
Terakhir Diperbarui 2023-08-07
Tanggal Publikasi 2022-01-28
Penilaian 4.82/5 Total 11 Penilaian
Pengembang fiatjaf
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/fiatjaf/nos2x
URL Halaman Bantuan https://github.com/fiatjaf/nos2x
URL Halaman Kebijakan Privasi https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Bahasa yang Didukung 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:*\/*"
            ]
        }
    ]
}