CKBox
Advanced toolbox for CryptoKitties
Qu'est-ce que CKBox ?
CKBox est une extension Chrome développée par https://www.ckbox.co, et sa fonction principale est "Advanced toolbox for CryptoKitties".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CKBox
Téléchargez les fichiers d'extension CKBox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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...
Informations de Base sur l'Extension
Nom | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
URL Officiel | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Description | Advanced toolbox for CryptoKitties |
Taille du Fichier | 153 KB |
Nombre d'Installations | 1,027 |
Version Actuelle | 0.32.22 |
Dernière Mise à Jour | 2023-12-10 |
Date de Publication | 2020-06-24 |
Évaluation | 4.90/5 Total 10 Évaluations |
Développeur | https://www.ckbox.co |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |