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開發的Chrome擴展程式,該擴展的主要功能是“Navano is an opensource featherweight Nano wallet in your browser. Nano is a fast & fee-less currency secured by a decentralised…”。

擴展截圖

screenshot
screenshot

下載Navano擴展crx文件

下載Navano擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}