Kambani

A Factom addresses and identity management system in your browser.

What is Kambani?

Kambani is a Chrome extension developed by https://factomatic.io, and its main feature is "A Factom addresses and identity management system in your browser.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Kambani Extension CRX File

Download Kambani extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Kambani Kambani
ID oiceedellfbhhplkfkpkkocbdkifpili
Official URL https://chromewebstore.google.com/detail/kambani/oiceedellfbhhplkfkpkkocbdkifpili
Description A Factom addresses and identity management system in your browser.
File Size 2.15 MB
Installation Count 508
Current Version 0.1.3
Last Updated 2020-01-15
Publish Date 2020-01-14
Rating 5.00/5 Total 10 Ratings
Developer https://factomatic.io
Email [email protected]
Payment Type free
Extension Website https://github.com/factomatic/kambani
Supported Languages 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"
    }
}