Kambani

A Factom addresses and identity management system in your browser.

Cos'è Kambani?

Kambani è un'estensione di Chrome sviluppata da https://factomatic.io, e la sua funzione principale è "A Factom addresses and identity management system in your browser.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Kambani

Scarica i file di estensione Kambani in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Kambani Kambani
ID oiceedellfbhhplkfkpkkocbdkifpili
URL Ufficiale https://chromewebstore.google.com/detail/kambani/oiceedellfbhhplkfkpkkocbdkifpili
Descrizione A Factom addresses and identity management system in your browser.
Dimensione del File 2.15 MB
Conteggio Installazioni 508
Versione Corrente 0.1.3
Ultimo Aggiornamento 2020-01-15
Data di Pubblicazione 2020-01-14
Valutazione 5.00/5 Totale 10 Valutazioni
Sviluppatore https://factomatic.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/factomatic/kambani
Lingue Supportate 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"
    }
}