KinConnect

KIN Blockchain Browser Extension

什么是KinConnect?

KinConnect是由Ahmad Sghaier Omar开发的Chrome扩展程序,该扩展的主要功能是“KIN Blockchain Browser Extension”。

扩展截图

screenshot

下载KinConnect扩展crx文件

下载KinConnect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 KinConnect KinConnect
ID jpbckcmmldmgmhdepehaoocccomimbgo
官方URL https://chrome.google.com/webstore/detail/jpbckcmmldmgmhdepehaoocccomimbgo
简介 KIN Blockchain Browser Extension
文件大小 706 KB
安装次数 13
当前版本 1.0.0
更新时间 2019-10-05
上架时间 2019-10-04
评分 5.00/5 共2次评分
开发者 Ahmad Sghaier Omar
电子邮箱 [email protected]
付费类型 free
支持的语言 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
        }
    ]
}