CPChain Wallet

CPChain Wallet for browser

¿Qué es CPChain Wallet?

CPChain Wallet es una extensión de Chrome desarrollada por https://cpchain.io, y su función principal es "CPChain Wallet for browser".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CPChain Wallet

Descarga archivos de extensión CPChain Wallet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The official wallet for interacting with the CPChain blockchain.

The CPChain wallet is an easy way to interact with the CPChain blockchain (Both mainnet and testnet, or the devnet deployed by yourself), and this wallet support the tokens published on the CPChain.

Using the wallet, you can create many accounts with one mnemonic and transfer CPC and tokens to other accounts natively.

The wallet is quick and easy to set up, intuitive to use, and ultra secure. It encrypts your private keys and mnemonics (using scrypt) and stores it locally on your device, so neither CPChain nor the websites you visit have access to these sensitive data.

Some of the wallet's features include:

- Support for the CPChain blockchains, both mainnet and testnet
- Support for multiple accounts with one mnemonic: Create new accounts
- Transfer and Receive CPC
- Add more tokens by manually
- Send and receive tokens
- Staking on the CPChain mainnet
- Address Book for easy access to frequently used accounts                    

Información Básica de la Extensión

Nombre CPChain Wallet CPChain Wallet
ID oplmecahjmhcabighioajmmpnpkdllja
URL Oficial https://chromewebstore.google.com/detail/cpchain-wallet/oplmecahjmhcabighioajmmpnpkdllja
Descripción CPChain Wallet for browser
Tamaño del Archivo 677 KB
Cantidad de Instalaciones 54
Versión Actual 0.0.5
Última Actualización 2023-07-04
Fecha de Publicación 2022-09-09
Desarrollador https://cpchain.io
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CPChain Wallet",
    "description": "CPChain Wallet for browser",
    "version": "0.0.5",
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_icon": {
            "16": "logo-16.png",
            "24": "logo-24.png",
            "32": "logo-32.png",
            "128": "logo-128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "logo-16.png",
        "24": "logo-24.png",
        "32": "logo-32.png",
        "128": "logo-128.png",
        "512": "logo-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:48001\/*",
                "https:\/\/*.cpchain.io\/*",
                "http:\/\/localhost:3000\/*",
                "http:\/\/localhost:3001\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*.cpchain.io\/*",
        "https:\/\/*.cpchain.network\/*",
        "http:\/\/localhost:8545\/",
        "http:\/\/localhost:8501\/"
    ]
}