Namada Extension

The Namada Extension manages a user's wallet for the Namada ecosystem.

What is Namada Extension?

Namada Extension is a Chrome extension developed by https://namada.net, and its main feature is "The Namada Extension manages a user's wallet for the Namada ecosystem.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Namada Extension Extension CRX File

Download Namada Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The Namada Extension allows users to create new accounts on Namada or import accounts from a recovery phrase or Ledger Hardware Wallet.                    

Extension Basic Information

Name Namada Extension Namada Extension
ID hnebcbhjpeejiclgbohcijljcnjdofek
Official URL https://chromewebstore.google.com/detail/namada-extension/hnebcbhjpeejiclgbohcijljcnjdofek
Description The Namada Extension manages a user's wallet for the Namada ecosystem.
File Size 3.94 MB
Installation Count 116,509
Current Version 0.2.4
Last Updated 2024-02-08
Publish Date 2023-11-23
Rating 3.94/5 Total 31 Ratings
Developer https://namada.net
Email [email protected]
Payment Type free
Extension Website https://namada.net/extension
Help Page URL https://discord.gg/namada
Privacy Policy Page URL https://namada.net/extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Namada Extension",
    "description": "The Namada Extension manages a user's wallet for the Namada ecosystem.",
    "version": "0.2.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.namada.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.namada.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "offscreen"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.namada.js",
                "assets\/app.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "assets\/icons\/icon.png",
        "32": "assets\/icons\/icon.png",
        "48": "assets\/icons\/icon.png",
        "128": "assets\/icons\/icon.png"
    },
    "minimum_chrome_version": "108"
}