Nami

A wallet to experience Cardano to the fullest

Nami क्या है?

Nami Berry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A wallet to experience Cardano to the fullest"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nami एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}