CKB Enhanced
A chrome extension for enhance user-experience on CKB
Cos'è CKB Enhanced?
CKB Enhanced è un'estensione di Chrome sviluppata da keithwhisper, e la sua funzione principale è "A chrome extension for enhance user-experience on CKB".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CKB Enhanced
Scarica i file di estensione CKB Enhanced in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
CKB Enhanced is a chrome-based light wallet working with CKB Explorer.
It provides a basic balance synchronization for now. Informazioni di Base sull'Estensione
| Nome | |
| ID | haeebgfanocpddbkammjloaopbfkkpii |
| URL Ufficiale | https://chromewebstore.google.com/detail/ckb-enhanced/haeebgfanocpddbkammjloaopbfkkpii |
| Descrizione | A chrome extension for enhance user-experience on CKB |
| Dimensione del File | 322 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 0.1.10-alpha |
| Ultimo Aggiornamento | 2020-02-27 |
| Data di Pubblicazione | 2020-02-27 |
| Sviluppatore | keithwhisper |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
}
} | |