TwitchEmotes

Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.

Что такое TwitchEmotes?

TwitchEmotes - это расширение Chrome, разработанное faaf, и его основная функция - "Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension replaces Twitch, BetterTTV and FrankerFaceZ emote text with emote images on all sites.
Add your favourite channels from the settings page.
Works everywhere including Twitch live/VOD/clips chat and YouTube chat.

Source Code:
https://github.com/Phineas05/TwitchEmotes                    

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

Название TwitchEmotes TwitchEmotes
ID kjjlajpjmldgolobcakncgeoaofcgkom
Официальный URL https://chrome.google.com/webstore/detail/twitchemotes/kjjlajpjmldgolobcakncgeoaofcgkom
Описание Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.
Размер файла 75.39 KB
Количество установок 40,000
Текущая Версия 2.11
Последнее Обновление 2020-05-27
Дата публикации 2020-05-27
Рейтинг 3.94/5 Всего 16 оценок
Разработчик faaf
Тип оплаты free
Официальный сайт расширения https://github.com/Phineas05/TwitchEmotes
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TwitchEmotes",
    "version": "2.11",
    "description": "Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "jquery-3.3.1.min.js",
                "replacer.js"
            ]
        }
    ],
    "options_page": "settings.html"
}