KinConnect

KIN Blockchain Browser Extension

KinConnectคืออะไร?

KinConnect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ahmad Sghaier Omar และคุณลักษณะหลักของมันคือ "KIN Blockchain Browser Extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย KinConnect

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}