CKB Enhanced

A chrome extension for enhance user-experience on CKB

CKB Enhancedとは何ですか?

CKB Enhancedはkeithwhisperによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension for enhance user-experience on CKB」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

CKB Enhanced拡張機能のCRXファイルをダウンロード

CKB Enhanced拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        CKB Enhanced is a chrome-based light wallet working with CKB Explorer.

It provides a basic balance synchronization for now.                    

拡張機能の基本情報

名前 CKB Enhanced CKB Enhanced
ID haeebgfanocpddbkammjloaopbfkkpii
公式URL https://chromewebstore.google.com/detail/ckb-enhanced/haeebgfanocpddbkammjloaopbfkkpii
説明 A chrome extension for enhance user-experience on CKB
ファイルサイズ 322 KB
インストール数 21
現在のバージョン 0.1.10-alpha
最終更新日 2020-02-27
公開日 2020-02-27
開発者 keithwhisper
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CKB Enhanced",
    "description": "A chrome extension for enhance user-experience on CKB",
    "icons": {
        "16": "images\/ckb-enhanced.png",
        "48": "images\/ckb-enhanced.png",
        "128": "images\/ckb-enhanced.png"
    },
    "version": "0.1.10",
    "version_name": "0.1.10-alpha",
    "browser_action": {
        "default_icon": {
            "16": "images\/ckb-enhanced.png",
            "24": "images\/ckb-enhanced.png",
            "32": "images\/ckb-enhanced.png"
        },
        "default_title": "CKB Enhanced",
        "default_popup": "popup\/public\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/explorer.nervos.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "ckb-sdk.min.js",
            "HDKeychain.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "options_ui": {
        "page": "options\/public\/index.html",
        "open_in_tab": true
    }
}