WaykiMax

A WaykiChain Wallet in your Browser

Was ist WaykiMax?

WaykiMax ist eine Chrome-Erweiterung, die von wiccdev entwickelt wurde, und ihr Hauptmerkmal ist "A WaykiChain Wallet in your Browser".

Erweiterungsscreenshots

screenshot

WaykiMax-Erweiterungs-CRX-Datei herunterladen

Laden Sie WaykiMax-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name WaykiMax WaykiMax
ID odaegfdpkolgbdaeibcebmibmibchbce
Offizielle URL https://chrome.google.com/webstore/detail/waykimax/odaegfdpkolgbdaeibcebmibmibchbce
Beschreibung A WaykiChain Wallet in your Browser
Dateigröße 1.64 MB
Installationsanzahl 4,487
Aktuelle Version 2.2.2
Letztes Update 2020-11-05
Veröffentlichungsdatum 2020-01-19
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler wiccdev
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.wiccdev.org/book/en/Privacy/PrivacyPolicy.html
Unterstützte Sprachen 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"
    ]
}