KinConnect

KIN Blockchain Browser Extension

Co je KinConnect?

KinConnect je rozšíření Chrome vyvinuté Ahmad Sghaier Omar, a jeho hlavní funkcí je „KIN Blockchain Browser Extension“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření KinConnect

Stáhněte si soubory rozšíření KinConnect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        KinConnect  is a KIN Blockchain Browser extension providing the features of a wallet and also enables web apps to interact with the KIN Blockchain using an injected window.kin object.
The extension provides main features of a wallet, including
creating and importing wallet
Viewing the balance and transactions
Export account address by either copying the address or display the QR code
Export Secret Key
Link to view accounts details and transactions on kinexplorer.org
The wallet is stored in encrypted format in local storage                    

Základní Informace o Rozšíření

Název KinConnect KinConnect
ID jpbckcmmldmgmhdepehaoocccomimbgo
Oficiální URL https://chrome.google.com/webstore/detail/jpbckcmmldmgmhdepehaoocccomimbgo
Popis KIN Blockchain Browser Extension
Velikost souboru 706 KB
Počet instalací 13
Aktuální Verze 1.0.0
Poslední Aktualizace 2019-10-05
Datum Vydání 2019-10-04
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Ahmad Sghaier Omar
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KinConnect",
    "description": "KIN Blockchain Browser Extension",
    "version": "1.0.0",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "KinConnect",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "inpage.js"
    ],
    "permissions": [
        "*:\/\/*.kinfederation.com\/*",
        "*:\/\/*.kinexplorer.com\/*",
        "*:\/\/kinouponapi.herokuapp.com\/*",
        "activeTab",
        "tabs",
        "alarms",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}