CKBox

Advanced toolbox for CryptoKitties

Что такое CKBox?

CKBox - это расширение Chrome, разработанное https://www.ckbox.co, и его основная функция - "Advanced toolbox for CryptoKitties".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения CKBox

Скачайте файлы расширений CKBox в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название CKBox CKBox
ID jkefllnpggoehndkogpdjndhfidgnchk
Официальный URL https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk
Описание Advanced toolbox for CryptoKitties
Размер файла 153 KB
Количество установок 1,027
Текущая Версия 0.32.22
Последнее Обновление 2023-12-10
Дата публикации 2020-06-24
Рейтинг 4.90/5 Всего 10 оценок
Разработчик https://www.ckbox.co
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}