Hive Keychain

Secure Hive Wallet Extension.

Co to jest Hive Keychain?

Hive Keychain to rozszerzenie Chrome opracowane przez Hive Keychain Ltd., a jego główną funkcją jest „Secure Hive Wallet Extension.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Hive Keychain

Pobierz pliki rozszerzeń Hive Keychain w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Hive Keychain is an extension for accessing Hive-enabled distributed applications, or "dApps" in your  Chromium or Firefox browser!

The extension injects the Hive Keychain API into every website's javascript context, so that dApps can read from the blockchain.

Hive Keychain also lets the user create and manage their own identities, so when a dApp wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting it.

Because it adds functionality to the normal browser context, Hive Keychain requires the permission to read and write to any webpage. You can always "view the source" of Hive Keychain the way you do any Chrome extension, or view the source code on Github:

https://github.com/hive-keychain/hive-keychain-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa Hive Keychain Hive Keychain
ID jcacnejopjdphbnjgfaaobbfafkihpep
Oficjalny URL https://chromewebstore.google.com/detail/hive-keychain/jcacnejopjdphbnjgfaaobbfafkihpep
Opis Secure Hive Wallet Extension.
Rozmiar pliku 20.41 MB
Liczba instalacji 84,622
Aktualna Wersja 3.0.9
Ostatnia Aktualizacja 2024-02-25
Data Publikacji 2020-07-02
Ocena 4.38/5 Łącznie 40 Oceny
Deweloper Hive Keychain Ltd.
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://hive-keychain.com
Adres URL Strony Pomocy https://discord.com/invite/3EM6YfRrGv
Adres URL Strony Polityki Prywatności https://hive-keychain.com
Obsługiwane Języki en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_keychain__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "3.0.9",
    "permissions": [
        "storage",
        "idle",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "\/assets\/images\/iconhive.png"
    },
    "icons": {
        "128": "\/assets\/images\/iconhive.png"
    },
    "background": {
        "service_worker": "backgroundBundle.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/logo.png",
                "hive_keychain.js",
                "_locales\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/0.0.0.0:1337\/*",
                "http:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/0.0.0.0:1337\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "keychainifyBundle.js",
                "web_interfaceBundle.js"
            ]
        }
    ],
    "manifest_version": 3
}