CKBox

Advanced toolbox for CryptoKitties

Co to jest CKBox?

CKBox to rozszerzenie Chrome opracowane przez https://www.ckbox.co, a jego główną funkcją jest „Advanced toolbox for CryptoKitties”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CKBox

Pobierz pliki rozszerzeń CKBox w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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...                    

Podstawowe informacje o rozszerzeniu

Nazwa CKBox CKBox
ID jkefllnpggoehndkogpdjndhfidgnchk
Oficjalny URL https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk
Opis Advanced toolbox for CryptoKitties
Rozmiar pliku 153 KB
Liczba instalacji 1,027
Aktualna Wersja 0.32.22
Ostatnia Aktualizacja 2023-12-10
Data Publikacji 2020-06-24
Ocena 4.90/5 Łącznie 10 Oceny
Deweloper https://www.ckbox.co
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}