KinConnect

KIN Blockchain Browser Extension

Cos'è KinConnect?

KinConnect è un'estensione di Chrome sviluppata da Ahmad Sghaier Omar, e la sua funzione principale è "KIN Blockchain Browser Extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione KinConnect

Scarica i file di estensione KinConnect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome KinConnect KinConnect
ID jpbckcmmldmgmhdepehaoocccomimbgo
URL Ufficiale https://chrome.google.com/webstore/detail/jpbckcmmldmgmhdepehaoocccomimbgo
Descrizione KIN Blockchain Browser Extension
Dimensione del File 706 KB
Conteggio Installazioni 13
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-10-05
Data di Pubblicazione 2019-10-04
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Ahmad Sghaier Omar
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}