CPChain Wallet

CPChain Wallet for browser

CPChain Wallet란 무엇입니까?

CPChain Wallet은(는) https://cpchain.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CPChain Wallet for browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CPChain Wallet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 CPChain Wallet CPChain Wallet
ID oplmecahjmhcabighioajmmpnpkdllja
공식 URL https://chromewebstore.google.com/detail/cpchain-wallet/oplmecahjmhcabighioajmmpnpkdllja
설명 CPChain Wallet for browser
파일 크기 677 KB
설치 횟수 54
현재 버전 0.0.5
최근 업데이트 2023-07-04
출시 날짜 2022-09-09
개발자 https://cpchain.io
이메일 [email protected]
결제 유형 free
지원되는 언어 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\/"
    ]
}