Nami

A wallet to experience Cardano to the fullest

Nami là gì?

Nami là một tiện ích mở rộng Chrome được phát triển bởi Berry, và tính năng chính của nó là "A wallet to experience Cardano to the fullest".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nami

Tải xuống các tệp mở rộng Nami dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Nami is a browser-based wallet extension for interacting with the Cardano blockchain. It allows users to send and store multiple assets, delegate ada, and more.

The extension injects an API into every website's javascript context, so that arbitrary transactions can be built and signed.

Private keys associated with users’ wallets are not stored on centrally hosted servers. They are stored only on the user’s computer and are encrypted with the wallet password.

Nami was created by Alessandro Konrad and is maintained by IOG.

Useful links:
https://namiwallet.io
https://github.com/input-output-hk/nami-wallet
https://iohk.io
https://lace.io

Offered by: IOG                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Nami Nami
ID lpfcbjknijpeeillifnkikgncikgfhdo
URL Chính Thức https://chromewebstore.google.com/detail/nami/lpfcbjknijpeeillifnkikgncikgfhdo
Mô tả A wallet to experience Cardano to the fullest
Kích Thước Tệp 4.26 MB
Số Lần Cài Đặt 308,829
Phiên Bản Hiện Tại 3.7.2
Cập Nhật Lần Cuối 2024-03-02
Ngày Phát Hành 2021-07-12
Đánh Giá 3.18/5 Tổng số 190 Đánh Giá
Nhà Phát Triển Berry
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://namiwallet.io
URL Trang Chính Sách Bảo Mật https://www.namiwallet.io/iog-privacy-policy.pdf
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A wallet to experience Cardano to the fullest",
    "version": "3.7.2",
    "manifest_version": 3,
    "name": "Nami",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "mainPopup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/connect.trezor.io\/*\/popup.html"
            ],
            "js": [
                "trezorContentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png",
                "injected.bundle.js",
                "internalPopup.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; frame-src https:\/\/connect.trezor.io\/;"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "favicon"
    ]
}