Kambani

A Factom addresses and identity management system in your browser.

Что такое Kambani?

Kambani - это расширение Chrome, разработанное https://factomatic.io, и его основная функция - "A Factom addresses and identity management system in your browser.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Kambani

Скачайте файлы расширений 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
Электронная почта [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"
    }
}