Navano

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

Navanoคืออะไร?

Navano เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Navano

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}