Navano

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

Navano क्या है?

Navano thandal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Navano एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Navano Navano
ID ipncmlepbgkephhmehjhnfgefeehaeab
आधिकारिक URL https://chromewebstore.google.com/detail/navano/ipncmlepbgkephhmehjhnfgefeehaeab
विवरण Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…
फ़ाइल का आकार 1011 KB
स्थापना संख्या 23
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2021-07-27
प्रकाशन तिथि 2021-06-24
डेवलपर thandal
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/thandal/navano
सहायता पृष्ठ URL https://github.com/thandal/navano/issues
समर्थित भाषाएँ 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"
    ]
}