Kambani

A Factom addresses and identity management system in your browser.

Kambaniคืออะไร?

Kambani เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://factomatic.io และคุณลักษณะหลักของมันคือ "A Factom addresses and identity management system in your browser."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Kambani ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Kambani enables the storage of keys and digital identities, associated with the Factom blockchain, inside an encrypted "vault". It can be used to sign arbitrary requests from websites, effectively turning web applications into Factom enabled dApps.

Kambani provides an intuitive UI for:
 * importing FCT/EC addresses
 * creating and managing digital identities
 * creating an encrypted backup of your vault
 * reviewing and signing incoming requests from Kambani-enabled websites                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kambani Kambani
ID oiceedellfbhhplkfkpkkocbdkifpili
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kambani/oiceedellfbhhplkfkpkkocbdkifpili
คำอธิบาย A Factom addresses and identity management system in your browser.
ขนาดไฟล์ 2.15 MB
จำนวนการติดตั้ง 508
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2020-01-15
วันที่เผยแพร่ 2020-01-14
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://factomatic.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/factomatic/kambani
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kambani",
    "description": "A Factom addresses and identity management system in your browser.",
    "version": "0.1.3",
    "permissions": [
        "activeTab",
        "notifications",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "https:\/\/testnet-api.factomatic.io\/write-did"
    ],
    "browser_action": {
        "default_title": "Kambani",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "signerContentScript.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/factomatic.io\/*"
            ],
            "js": [
                "factomAddressesContentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/kambani-logo.png",
        "48": "assets\/kambani-logo.png",
        "128": "assets\/kambani-logo.png"
    }
}