Navano

Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…

Cos'è Navano?

Navano è un'estensione di Chrome sviluppata da thandal, e la sua funzione principale è "Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Navano

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

                        Navano is an opensource featherweight Nano wallet in your browser.

Nano is a fast & fee-less currency secured by a decentralised network. The Navano wallet stores all sensitive data locally (encrypted) and never communicates it to a server.

Navano injects a rudimentary Nano API into every website's javascript context, to allow some basic Nano dapps. For this reason it requires permission to read and write to any webpage. However,  the injected code is only a few lines long, and you can read it here:
https://github.com/thandal/navano/blob/master/src/inject_script.js

v0.0.3: fixes signing and improves the robustness of receiving transfers to new wallets.                    

Informazioni di Base sull'Estensione

Nome Navano Navano
ID ipncmlepbgkephhmehjhnfgefeehaeab
URL Ufficiale https://chromewebstore.google.com/detail/navano/ipncmlepbgkephhmehjhnfgefeehaeab
Descrizione Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…
Dimensione del File 1011 KB
Conteggio Installazioni 23
Versione Corrente 0.0.3
Ultimo Aggiornamento 2021-07-27
Data di Pubblicazione 2021-06-24
Sviluppatore thandal
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/thandal/navano
URL della Pagina di Aiuto https://github.com/thandal/navano/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 2,
    "name": "Navano",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Navano",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "inject_script.js"
    ]
}