CKB Enhanced
A chrome extension for enhance user-experience on CKB
What is CKB Enhanced?
CKB Enhanced is a Chrome extension developed by keithwhisper, and its main feature is "A chrome extension for enhance user-experience on CKB".
Extension Screenshots
Download CKB Enhanced Extension CRX File
Download CKB Enhanced extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
CKB Enhanced is a chrome-based light wallet working with CKB Explorer. It provides a basic balance synchronization for now.
Extension Basic Information
Name | CKB Enhanced |
ID | haeebgfanocpddbkammjloaopbfkkpii |
Official URL | https://chromewebstore.google.com/detail/ckb-enhanced/haeebgfanocpddbkammjloaopbfkkpii |
Description | A chrome extension for enhance user-experience on CKB |
File Size | 322 KB |
Installation Count | 21 |
Current Version | 0.1.10-alpha |
Last Updated | 2020-02-27 |
Publish Date | 2020-02-27 |
Developer | keithwhisper |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |