UniWallet

UniWallet Extension

UniWallet란 무엇입니까?

UniWallet은(는) unichain-developer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "UniWallet Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

UniWallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}