CKBox
Advanced toolbox for CryptoKitties
Vad är CKBox?
CKBox är en Chrome-tillägg utvecklad av https://www.ckbox.co, och dess huvudfunktion är "Advanced toolbox for CryptoKitties".
Tilläggsskärmbilder
Ladda ner CKBox-förlängningens CRX-fil
Ladda ner CKBox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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...
Grundläggande Information om Tillägg
Namn | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
Officiell webbadress | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Beskrivning | Advanced toolbox for CryptoKitties |
Filstorlek | 153 KB |
Antal Installationer | 1,027 |
Aktuell Version | 0.32.22 |
Senast Uppdaterad | 2023-12-10 |
Publiceringsdatum | 2020-06-24 |
Betyg | 4.90/5 Totalt 10 Betyg |
Utvecklare | https://www.ckbox.co |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } } |