Box Critters Texture Pack Manager

A great extension that lets you easily switch between, add and create new themes to use on Box Critters!

Что такое Box Critters Texture Pack Manager?

Box Critters Texture Pack Manager - это расширение Chrome, разработанное http://boxcrittersmods.ga, и его основная функция - "A great extension that lets you easily switch between, add and create new themes to use on Box Critters!".

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

screenshot

Скачать файл CRX расширения Box Critters Texture Pack Manager

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

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

                        This extension lets you easily switch between different themes, add new themes and create new themes.

switch between texture packs
create texture packs
activate multiple texture packs at the same time
install and use shaders                    

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

Название Box Critters Texture Pack Manager Box Critters Texture Pack Manager
ID okfakaikglajegjgjnaamcigadmfccmg
Официальный URL https://chrome.google.com/webstore/detail/box-critters-texture-pack/okfakaikglajegjgjnaamcigadmfccmg
Описание A great extension that lets you easily switch between, add and create new themes to use on Box Critters!
Размер файла 417 KB
Количество установок 42
Текущая Версия 3.2.0
Последнее Обновление 2020-09-08
Дата публикации 2020-05-17
Рейтинг 5.00/5 Всего 1 оценок
Разработчик http://boxcrittersmods.ga
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/tumble1999/bc-texture-pack-manager
URL страницы помощи https://discord.gg/uepE5Y
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Box Critters Texture Pack Manager",
    "description": "A great extension that lets you easily switch between, add and create new themes to use on Box Critters!",
    "version_name": "3.2.0",
    "version": "3.2.0.202",
    "author": "TumbleGamer",
    "icons": {
        "16": "logo-16.png",
        "32": "logo-32.png",
        "64": "logo-64.png",
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "logo-16.png",
            "32": "logo-32.png",
            "48": "logo-48.png",
            "128": "logo-128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "BC Texture Pack Manager"
    },
    "background": {
        "page": "bg\/background.html",
        "persistent": true
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.boxcritters.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.githubusercontent.com\/*\/*.bctp.json"
            ],
            "js": [
                "oneclick-tp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.githubusercontent.com\/*\/*.bcs.json"
            ],
            "js": [
                "oneclick-shader.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.boxcritters.com\/*",
                "https:\/\/critterball.herokuapp.com\/*",
                "https:\/\/*.boxcrittersmods.ga\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "tabs",
        "activeTab",
        "https:\/\/critterball.herokuapp.com\/*",
        "https:\/\/*.boxcritters.com\/*",
        "https:\/\/*.boxcrittersmods.ga\/*"
    ],
    "options_ui": {
        "page": "popup\/options.html",
        "open_in_tab": true
    }
}