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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}