Kitty Helper

Upgrade your Crypto Kitties experience to stay ahead of the competition.

Что такое Kitty Helper?

Kitty Helper - это расширение Chrome, разработанное Andy Groff, и его основная функция - "Upgrade your Crypto Kitties experience to stay ahead of the competition.".

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

screenshot

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

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

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

                        Kitty Helper is your one stop shop for upgrading your experience on the Crypto Kitties platform. Keep ahead of the competition with a custom rarity scoring algorithm, convert prices to USD on hover, and view every kitties rarest traits instantly.

This is currently a Beta release but stay tuned as many more features are coming soon!

Kitty Helper is 100% free and open source software - a labor of love. The code is available here:
https://github.com/agroff/kitty-helper                    

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

Название Kitty Helper Kitty Helper
ID dceabgpbnaimhibdgjdhgbabiocgimhb
Официальный URL https://chromewebstore.google.com/detail/kitty-helper/dceabgpbnaimhibdgjdhgbabiocgimhb
Описание Upgrade your Crypto Kitties experience to stay ahead of the competition.
Размер файла 283 KB
Количество установок 368
Текущая Версия 1.0.0
Последнее Обновление 2017-12-12
Дата публикации 2017-12-12
Рейтинг 3.64/5 Всего 14 оценок
Разработчик Andy Groff
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Upgrade your Crypto Kitties experience to stay ahead of the competition.",
    "version": "1.0.0",
    "name": "Kitty Helper",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.cryptokitties.co\/*"
            ],
            "js": [
                "jquery.bundle.js",
                "cryptokittiescontent.bundle.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/104.236.1.36\/"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}