UniWallet

UniWallet Extension

Qu'est-ce que UniWallet ?

UniWallet est une extension Chrome développée par unichain-developer, et sa fonction principale est "UniWallet Extension".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension UniWallet

Téléchargez les fichiers d'extension UniWallet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom UniWallet UniWallet
ID glifbmajcmgbjkeklllabmmpbgecnmnn
URL Officiel https://chromewebstore.google.com/detail/uniwallet/glifbmajcmgbjkeklllabmmpbgecnmnn
Description UniWallet Extension
Taille du Fichier 6.41 MB
Nombre d'Installations 63
Version Actuelle 1.0.5
Dernière Mise à Jour 2022-06-30
Date de Publication 2022-05-18
Évaluation 5.00/5 Total 12 Évaluations
Développeur unichain-developer
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://uniwallet.world
URL de la Page d'Aide https://t.me/UniworldOfficial
Langues Prises en Charge 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"
    ]
}