UniWallet

UniWallet Extension

Τι είναι το UniWallet;

Το UniWallet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον unichain-developer, και η κύρια λειτουργία του είναι "UniWallet Extension".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UniWallet

Λήψη αρχείων επέκτασης UniWallet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UniWallet UniWallet
ID glifbmajcmgbjkeklllabmmpbgecnmnn
Επίσημο URL https://chromewebstore.google.com/detail/uniwallet/glifbmajcmgbjkeklllabmmpbgecnmnn
Περιγραφή UniWallet Extension
Μέγεθος Αρχείου 6.41 MB
Αριθμός Εγκαταστάσεων 63
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2022-06-30
Ημερομηνία Δημοσίευσης 2022-05-18
Αξιολόγηση 5.00/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής unichain-developer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://uniwallet.world
Διεύθυνση URL της Σελίδας Βοήθειας https://t.me/UniworldOfficial
Υποστηριζόμενες Γλώσσες 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"
    ]
}