TwitchEmotes

Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.

Vad är TwitchEmotes?

TwitchEmotes är en Chrome-tillägg utvecklad av faaf, och dess huvudfunktion är "Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner TwitchEmotes-förlängningens CRX-fil

Ladda ner TwitchEmotes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn TwitchEmotes TwitchEmotes
ID kjjlajpjmldgolobcakncgeoaofcgkom
Officiell webbadress https://chrome.google.com/webstore/detail/twitchemotes/kjjlajpjmldgolobcakncgeoaofcgkom
Beskrivning Displays Twitch, BetterTTV and FrankerFaceZ emotes on all sites.
Filstorlek 75.39 KB
Antal Installationer 40,000
Aktuell Version 2.11
Senast Uppdaterad 2020-05-27
Publiceringsdatum 2020-05-27
Betyg 3.94/5 Totalt 16 Betyg
Utvecklare faaf
Betalningssätt free
Tilläggswebbplats https://github.com/Phineas05/TwitchEmotes
Stödda Språk 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"
}