Nami

A wallet to experience Cardano to the fullest

什麼是Nami?

Nami是由Berry開發的Chrome擴展程式,該擴展的主要功能是“A wallet to experience Cardano to the fullest”。

擴展截圖

screenshot

下載Nami擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 Nami Nami
ID lpfcbjknijpeeillifnkikgncikgfhdo
官方網址 https://chromewebstore.google.com/detail/nami/lpfcbjknijpeeillifnkikgncikgfhdo
簡介 A wallet to experience Cardano to the fullest
檔案大小 4.26 MB
安裝次數 308,829
目前版本 3.7.2
更新時間 2024-03-02
上架時間 2021-07-12
評分 3.18/5 共 190 次評分
開發者 Berry
電子郵箱 [email protected]
付費類型 free
擴展官網 https://namiwallet.io
隱私政策頁面URL https://www.namiwallet.io/iog-privacy-policy.pdf
支援的語言 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"
    ]
}