WaykiMax

A WaykiChain Wallet in your Browser

WaykiMax란 무엇입니까?

WaykiMax은(는) wiccdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A WaykiChain Wallet in your Browser"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WaykiMax is a wallet extension for signing, receiving and broadcasting WaykiChain transactions.The extension feature that allows users to manage their account info, add token, check balance, create/import/export mnemonics, transfer WICC, etc.

Developers can integrate WaykiMax into their website to create DAPPs, in turn enabling the use of Dapps from within the browser.

You can always "view the source" of WaykiMax the way you do any Chrome extension, or view the source code on Github:
https://github.com/WaykiChain/wicc-webwallet-extensions

Contact WaykiChain:
telegram:https://t.me/waykichaindeveng                    

확장 프로그램 기본 정보

이름 WaykiMax WaykiMax
ID odaegfdpkolgbdaeibcebmibmibchbce
공식 URL https://chrome.google.com/webstore/detail/waykimax/odaegfdpkolgbdaeibcebmibmibchbce
설명 A WaykiChain Wallet in your Browser
파일 크기 1.64 MB
설치 횟수 4,487
현재 버전 2.2.2
최근 업데이트 2020-11-05
출시 날짜 2020-01-19
평점 5.00/5 총 3 개의 평점
개발자 wiccdev
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.wiccdev.org/book/en/Privacy/PrivacyPolicy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WaykiMax",
    "version": "2.2.2",
    "description": "A WaykiChain Wallet in your Browser",
    "author": "[email protected]",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "",
        "*:\/\/*\/*",
        "activeTab",
        "tabs",
        "unlimitedStorage",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "128": "icons\/128.png"
        },
        "default_title": "WaykiMax",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "page": "pages\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "panel.html",
        "js\/content.js"
    ]
}