Kambani

A Factom addresses and identity management system in your browser.

Kambaniとは何ですか?

Kambaniはhttps://factomatic.ioによって開発されたChromeの拡張機能で、その主な機能は「A Factom addresses and identity management system in your browser.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Kambani拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}