CKBox
Advanced toolbox for CryptoKitties
Cos'è CKBox?
CKBox è un'estensione di Chrome sviluppata da https://www.ckbox.co, e la sua funzione principale è "Advanced toolbox for CryptoKitties".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CKBox
Scarica i file di estensione CKBox 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
Get your CryptoKitties out of the box! CK Box is a set of additions to CryptoKitties website. - Hidden genes - Kitty history - Breeding probabilities - Cattribute charts and stats - Jewels in market/profile list - Cattributes popup right on kitty - More cool stuff The future is meow...
Informazioni di Base sull'Estensione
Nome | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
URL Ufficiale | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Descrizione | Advanced toolbox for CryptoKitties |
Dimensione del File | 153 KB |
Conteggio Installazioni | 1,027 |
Versione Corrente | 0.32.22 |
Ultimo Aggiornamento | 2023-12-10 |
Data di Pubblicazione | 2020-06-24 |
Valutazione | 4.90/5 Totale 10 Valutazioni |
Sviluppatore | https://www.ckbox.co |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CKBox", "short_name": "CKBox", "version": "0.32.22", "description": "Advanced toolbox for CryptoKitties", "permissions": [ "storage", "https:\/\/*.ckbox.co\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.cryptokitties.co\/*" ], "css": [ "ckbox.css" ], "js": [ "ckbox.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "inject.js" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "CKBox 0.32.22" }, "options_ui": { "page": "options.html", "open_in_tab": false, "chrome_style": true } } |