nos2x

Nostr Signer Extension

Cos'è nos2x?

nos2x è un'estensione di Chrome sviluppata da fiatjaf, e la sua funzione principale è "Nostr Signer Extension".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione nos2x

Scarica i file di estensione nos2x in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Implements NIP-07.                    

Informazioni di Base sull'Estensione

Nome nos2x nos2x
ID kpgefcfmnafjgpblomihpgmejjdanjjp
URL Ufficiale https://chromewebstore.google.com/detail/nos2x/kpgefcfmnafjgpblomihpgmejjdanjjp
Descrizione Nostr Signer Extension
Dimensione del File 677 KB
Conteggio Installazioni 5,339
Versione Corrente 2.2.0
Ultimo Aggiornamento 2023-08-07
Data di Pubblicazione 2022-01-28
Valutazione 4.82/5 Totale 11 Valutazioni
Sviluppatore fiatjaf
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/fiatjaf/nos2x
URL della Pagina di Aiuto https://github.com/fiatjaf/nos2x
URL della Pagina della Politica sulla Privacy https://github.com/fiatjaf/kwh/blob/master/docs/privacy-policy.md
Lingue Supportate 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:*\/*"
            ]
        }
    ]
}