TwitchEmotes

Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.

Co to jest TwitchEmotes?

TwitchEmotes to rozszerzenie Chrome opracowane przez faaf, a jego główną funkcją jest „Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TwitchEmotes

Pobierz pliki rozszerzeń TwitchEmotes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa TwitchEmotes TwitchEmotes
ID kjjlajpjmldgolobcakncgeoaofcgkom
Oficjalny URL https://chrome.google.com/webstore/detail/twitchemotes/kjjlajpjmldgolobcakncgeoaofcgkom
Opis Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.
Rozmiar pliku 75.39 KB
Liczba instalacji 40,000
Aktualna Wersja 2.11
Ostatnia Aktualizacja 2020-05-27
Data Publikacji 2020-05-27
Ocena 3.94/5 Łącznie 16 Oceny
Deweloper faaf
Typ Płatności free
Strona Rozszerzenia https://github.com/Phineas05/TwitchEmotes
Obsługiwane Języki 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"
}