Nami

A wallet to experience Cardano to the fullest

Cos'è Nami?

Nami è un'estensione di Chrome sviluppata da Berry, e la sua funzione principale è "A wallet to experience Cardano to the fullest".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Nami

Scarica i file di estensione Nami 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

                        Nami is a browser-based wallet extension for interacting with the Cardano blockchain. It allows users to send and store multiple assets, delegate ada, and more.

The extension injects an API into every website's javascript context, so that arbitrary transactions can be built and signed.

Private keys associated with users’ wallets are not stored on centrally hosted servers. They are stored only on the user’s computer and are encrypted with the wallet password.

Nami was created by Alessandro Konrad and is maintained by IOG.

Useful links:
https://namiwallet.io
https://github.com/input-output-hk/nami-wallet
https://iohk.io
https://lace.io

Offered by: IOG                    

Informazioni di Base sull'Estensione

Nome Nami Nami
ID lpfcbjknijpeeillifnkikgncikgfhdo
URL Ufficiale https://chromewebstore.google.com/detail/nami/lpfcbjknijpeeillifnkikgncikgfhdo
Descrizione A wallet to experience Cardano to the fullest
Dimensione del File 4.26 MB
Conteggio Installazioni 308,829
Versione Corrente 3.7.2
Ultimo Aggiornamento 2024-03-02
Data di Pubblicazione 2021-07-12
Valutazione 3.18/5 Totale 190 Valutazioni
Sviluppatore Berry
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://namiwallet.io
URL della Pagina della Politica sulla Privacy https://www.namiwallet.io/iog-privacy-policy.pdf
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A wallet to experience Cardano to the fullest",
    "version": "3.7.2",
    "manifest_version": 3,
    "name": "Nami",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "mainPopup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/connect.trezor.io\/*\/popup.html"
            ],
            "js": [
                "trezorContentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png",
                "injected.bundle.js",
                "internalPopup.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; frame-src https:\/\/connect.trezor.io\/;"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "favicon"
    ]
}