dankCircle preloader for Twitch

Replace the twitch default preloader with the dankCircle emote.

Что такое dankCircle preloader for Twitch?

dankCircle preloader for Twitch - это расширение Chrome, разработанное Aiden Wallis, и его основная функция - "Replace the twitch default preloader with the dankCircle emote.".

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

screenshot

Скачать файл CRX расширения dankCircle preloader for Twitch

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

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

                        Replaces the default twitch.tv sitewide preloader with the dankCircle BetterTTV emote. Fully compatible with any third party extensions, as all this does is inject a few lines of CSS to any Twitch tab on load.                    

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

Название dankCircle preloader for Twitch dankCircle preloader for Twitch
ID iedfclphnfdjimgbhjfkcggfclcjnngc
Официальный URL https://chromewebstore.google.com/detail/dankcircle-preloader-for/iedfclphnfdjimgbhjfkcggfclcjnngc
Описание Replace the twitch default preloader with the dankCircle emote.
Размер файла 59.88 KB
Количество установок 15
Текущая Версия 0.0.1
Последнее Обновление 2019-01-12
Дата публикации 2019-01-12
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Aiden Wallis
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "dankCircle preloader for Twitch",
    "short_name": "dankCircle",
    "version": "0.0.1",
    "description": "Replace the twitch default preloader with the dankCircle emote.",
    "icons": {
        "48": "images\/pajaDank_48.png",
        "128": "images\/pajaDank_128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "exclude_globs": [
                "*:\/\/api.twitch.tv\/*"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "web_accessible_resources": [
        "images\/dankCircle.gif"
    ]
}