UniWallet
UniWallet Extension
UniWallet क्या है?
UniWallet unichain-developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "UniWallet Extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UniWallet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |