UniWallet

UniWallet Extension

O que é UniWallet?

UniWallet é uma extensão do Chrome desenvolvida por unichain-developer, e sua principal característica é "UniWallet Extension".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão UniWallet

Baixe arquivos de extensão UniWallet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome UniWallet UniWallet
ID glifbmajcmgbjkeklllabmmpbgecnmnn
URL Oficial https://chromewebstore.google.com/detail/uniwallet/glifbmajcmgbjkeklllabmmpbgecnmnn
Descrição UniWallet Extension
Tamanho do Arquivo 6.41 MB
Contagem de Instalações 63
Versão Atual 1.0.5
Última Atualização 2022-06-30
Data de Publicação 2022-05-18
Classificação 5.00/5 Total de 12 Avaliações
Desenvolvedor unichain-developer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://uniwallet.world
URL da Página de Ajuda https://t.me/UniworldOfficial
Idiomas Suportados 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"
    ]
}