CKBox
Advanced toolbox for CryptoKitties
Hvad er CKBox?
CKBox er en Chrome-udvidelse udviklet af https://www.ckbox.co, og dens hovedfunktion er "Advanced toolbox for CryptoKitties".
Udvidelsesskærmbilleder
Download CKBox-udvidelses-CRX-fil
Download CKBox-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | jkefllnpggoehndkogpdjndhfidgnchk |
| Officiel URL | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
| Beskrivelse | Advanced toolbox for CryptoKitties |
| Filstørrelse | 153 KB |
| Antal Installationer | 1,027 |
| Nuværende Version | 0.32.22 |
| Senest Opdateret | 2023-12-10 |
| Udgivelsesdato | 2020-06-24 |
| Bedømmelse | 4.90/5 Samlet 10 Bedømmelser |
| Udvikler | https://www.ckbox.co |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
}
} | |