UniWallet

UniWallet Extension

Co je UniWallet?

UniWallet je rozšíření Chrome vyvinuté unichain-developer, a jeho hlavní funkcí je „UniWallet Extension“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření UniWallet

Stáhněte si soubory rozšíření UniWallet ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The UniWallet Extension is the client-side wallet that supports the UniChain network. The main functions as the below: 
 - Send and receive UNW coin 
 - Send and receive URC-20 token
 - Send and receive URC-30 native token 
 - Support the send future feature (UNW and token) 
 - Execute smart contract functions
 - Sign transaction and broadcast to UniChain network 

UniChain is the emerging blockchain platform for smart society 5.0, Web3 and Metaverse. With the scalable capacity and the native features, UniChain is suitable for traditional applications and also the crypto spaces. 

Contract us at: [email protected]  | [email protected] 
Community & Dev channel: https://t.me/UniworldOfficial | https://discord.gg/W4teW5mThv 
Official website: https://unichain.world | https://uniworld.io                    

Základní Informace o Rozšíření

Název UniWallet UniWallet
ID glifbmajcmgbjkeklllabmmpbgecnmnn
Oficiální URL https://chromewebstore.google.com/detail/uniwallet/glifbmajcmgbjkeklllabmmpbgecnmnn
Popis UniWallet Extension
Velikost souboru 6.41 MB
Počet instalací 63
Aktuální Verze 1.0.5
Poslední Aktualizace 2022-06-30
Datum Vydání 2022-05-18
Hodnocení 5.00/5 Celkem 12 Hodnocení
Vývojář unichain-developer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://uniwallet.world
URL Stránky Nápovědy https://t.me/UniworldOfficial
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UniWallet",
    "version": "1.0.5",
    "version_name": "1.0.5",
    "description": "UniWallet Extension",
    "author": "Yamoto",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "clipboardWrite",
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "packages\/popup\/build\/index.html",
        "default_title": "UniWallet"
    },
    "icons": {
        "128": "packages\/popup\/static\/icon.png"
    },
    "background": {
        "scripts": [
            "dist\/backgroundScript.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "dist\/pageHook.js"
    ]
}