Nami

A wallet to experience Cardano to the fullest

Nami란 무엇입니까?

Nami은(는) Berry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A wallet to experience Cardano to the fullest"입니다.

확장 프로그램 스크린샷

screenshot

Nami 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}