CKBox
Advanced toolbox for CryptoKitties
Was ist CKBox?
CKBox ist eine Chrome-Erweiterung, die von https://www.ckbox.co entwickelt wurde, und ihr Hauptmerkmal ist "Advanced toolbox for CryptoKitties".
Erweiterungsscreenshots
CKBox-Erweiterungs-CRX-Datei herunterladen
Laden Sie CKBox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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...
Grundlegende Informationen zur Erweiterung
Name | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
Offizielle URL | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Beschreibung | Advanced toolbox for CryptoKitties |
Dateigröße | 153 KB |
Installationsanzahl | 1,027 |
Aktuelle Version | 0.32.22 |
Letztes Update | 2023-12-10 |
Veröffentlichungsdatum | 2020-06-24 |
Bewertung | 4.90/5 Insgesamt 10 Bewertungen |
Entwickler | https://www.ckbox.co |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |