Kambani

A Factom addresses and identity management system in your browser.

Wat is Kambani?

Kambani is een Chrome-extensie ontwikkeld door https://factomatic.io, en de belangrijkste functie is "A Factom addresses and identity management system in your browser.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Kambani

Download Kambani-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Kambani Kambani
ID oiceedellfbhhplkfkpkkocbdkifpili
Officiële URL https://chromewebstore.google.com/detail/kambani/oiceedellfbhhplkfkpkkocbdkifpili
Beschrijving A Factom addresses and identity management system in your browser.
Bestandsgrootte 2.15 MB
Aantal Installaties 508
Huidige Versie 0.1.3
Laatst Bijgewerkt 2020-01-15
Publicatiedatum 2020-01-14
Beoordeling 5.00/5 Totaal 10 Beoordelingen
Ontwikkelaar https://factomatic.io
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/factomatic/kambani
Ondersteunde Talen 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"
    }
}