Navano

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

Wat is Navano?

Navano is een Chrome-extensie ontwikkeld door thandal, en de belangrijkste functie is "Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Navano

Download Navano-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Navano Navano
ID ipncmlepbgkephhmehjhnfgefeehaeab
Officiële URL https://chromewebstore.google.com/detail/navano/ipncmlepbgkephhmehjhnfgefeehaeab
Beschrijving Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…
Bestandsgrootte 1011 KB
Aantal Installaties 23
Huidige Versie 0.0.3
Laatst Bijgewerkt 2021-07-27
Publicatiedatum 2021-06-24
Ontwikkelaar thandal
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/thandal/navano
Help Pagina-URL https://github.com/thandal/navano/issues
Ondersteunde Talen 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"
    ]
}