Kambani

A Factom addresses and identity management system in your browser.

Hvad er Kambani?

Kambani er en Chrome-udvidelse udviklet af https://factomatic.io, og dens hovedfunktion er "A Factom addresses and identity management system in your browser.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Kambani-udvidelses-CRX-fil

Download Kambani-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Kambani Kambani
ID oiceedellfbhhplkfkpkkocbdkifpili
Officiel URL https://chromewebstore.google.com/detail/kambani/oiceedellfbhhplkfkpkkocbdkifpili
Beskrivelse A Factom addresses and identity management system in your browser.
Filstørrelse 2.15 MB
Antal Installationer 508
Nuværende Version 0.1.3
Senest Opdateret 2020-01-15
Udgivelsesdato 2020-01-14
Bedømmelse 5.00/5 Samlet 10 Bedømmelser
Udvikler https://factomatic.io
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/factomatic/kambani
Understøttede Sprog 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"
    }
}