UniWallet
UniWallet Extension
Was ist UniWallet?
UniWallet ist eine Chrome-Erweiterung, die von unichain-developer entwickelt wurde, und ihr Hauptmerkmal ist "UniWallet Extension".
Erweiterungsscreenshots
UniWallet-Erweiterungs-CRX-Datei herunterladen
Laden Sie UniWallet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | UniWallet |
ID | glifbmajcmgbjkeklllabmmpbgecnmnn |
Offizielle URL | https://chromewebstore.google.com/detail/uniwallet/glifbmajcmgbjkeklllabmmpbgecnmnn |
Beschreibung | UniWallet Extension |
Dateigröße | 6.41 MB |
Installationsanzahl | 63 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2022-06-30 |
Veröffentlichungsdatum | 2022-05-18 |
Bewertung | 5.00/5 Insgesamt 12 Bewertungen |
Entwickler | unichain-developer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://uniwallet.world |
Hilfeseite URL | https://t.me/UniworldOfficial |
Unterstützte Sprachen | 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" ] } |