CKBox
Advanced toolbox for CryptoKitties
What is CKBox?
CKBox is a Chrome extension developed by https://www.ckbox.co, and its main feature is "Advanced toolbox for CryptoKitties".
Extension Screenshots
Download CKBox Extension CRX File
Download CKBox 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
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...
Extension Basic Information
Name | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
Official URL | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Description | Advanced toolbox for CryptoKitties |
File Size | 153 KB |
Installation Count | 1,027 |
Current Version | 0.32.22 |
Last Updated | 2023-12-10 |
Publish Date | 2020-06-24 |
Rating | 4.90/5 Total 10 Ratings |
Developer | https://www.ckbox.co |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |