Curium

Browser extension wallet for the Bluzelle network.

Was ist Curium?

Curium ist eine Chrome-Erweiterung, die von https://bluzelle.com entwickelt wurde, und ihr Hauptmerkmal ist "Browser extension wallet for the Bluzelle network.".

Erweiterungsscreenshots

screenshot

Curium-Erweiterungs-CRX-Datei herunterladen

Laden Sie Curium-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Browser extension wallet for the Bluzelle network. Bluzelle is a decentralized network with its own BLZ token. 

Install this extension and let the extension handle management of your mnemonic. Without the extension, you have to manually keep record of this precious mnemonic, and paste it into the browser app everytime you want to sign a transaction.

With the extension, the mnemonic (and HD-derived keys) are owned and managed by the extension. Transactions are handed over to the extension, and it signs them. You as the user no longer need to manager this precious information.

You do need to remember your password, in order to login, and we recommend you always keep a backup of your mnemonic to a file on a medium (like USB stick) where you can recover the key, if for example your PC loses its data, etc.                    

Grundlegende Informationen zur Erweiterung

Name Curium Curium
ID pccfbcbdplhbfnaffdfdndnigkammdob
Offizielle URL https://chromewebstore.google.com/detail/curium/pccfbcbdplhbfnaffdfdndnigkammdob
Beschreibung Browser extension wallet for the Bluzelle network.
Dateigröße 10.64 MB
Installationsanzahl 38
Aktuelle Version 0.8.8
Letztes Update 2021-07-17
Veröffentlichungsdatum 2021-07-14
Entwickler https://bluzelle.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Curium",
    "description": "Browser extension wallet for the Bluzelle network.",
    "version": "0.8.8",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Curium"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.bundle.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "notifications",
        "https:\/\/staking.bluzelle.com\/*",
        "https:\/\/staging.staking.bluzelle.com\/*",
        "http:\/\/integration.staking.bluzelle.com\/*",
        "https:\/\/callofdata.bluzelle.com\/*",
        "https:\/\/bluzelle.github.io\/call-of-data\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/staking.bluzelle.com\/*",
                "https:\/\/staging.staking.bluzelle.com\/*",
                "http:\/\/integration.staking.bluzelle.com\/*",
                "https:\/\/callofdata.bluzelle.com\/*",
                "https:\/\/bluzelle.github.io\/call-of-data\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "contentScripts.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "injectedScript.bundle.js",
        "assets\/temp-icon.svg"
    ]
}