Twitch Meet

Replaces twitch emotes with correct images

Vad är Twitch Meet?

Twitch Meet är en Chrome-tillägg utvecklad av https://tomsteer.com, och dess huvudfunktion är "Replaces twitch emotes with correct images".

Tilläggsskärmbilder

screenshot

Ladda ner Twitch Meet-förlängningens CRX-fil

Ladda ner Twitch Meet-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

                        Uses the Better TTV API to get the top 100 emotes as well as some predefined emotes and uses them to replace google meet chat to the correct emote.
A list of available emotes can be found on the site.                    

Grundläggande Information om Tillägg

Namn Twitch Meet Twitch Meet
ID folijkmjilnffmlehdcffanlmlggplmi
Officiell webbadress https://chromewebstore.google.com/detail/twitch-meet/folijkmjilnffmlehdcffanlmlggplmi
Beskrivning Replaces twitch emotes with correct images
Filstorlek 32.35 KB
Antal Installationer 68
Aktuell Version 0.9
Senast Uppdaterad 2023-08-11
Publiceringsdatum 2021-02-24
Betyg 4.67/5 Totalt 6 Betyg
Utvecklare https://tomsteer.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://twitchmeet.tomsteer.me/
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Meet",
    "version": "0.9",
    "description": "Replaces twitch emotes with correct images",
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [],
    "icons": {
        "128": "img\/icon-extensionMenu.png"
    }
}