Twitch Chat Translation
Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Co je Twitch Chat Translation?
Twitch Chat Translation je rozšíření Chrome vyvinuté Sei Watson, a jeho hlavní funkcí je „Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitch Chat Translation
Stáhněte si soubory rozšíření Twitch Chat Translation ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Use DeepL Translate or Google Translate to translate your Twitch chat into the specified language. This extension has the ability to always keep only the chats translated to the specified language instead of the traditional page reload translation method. By subscribing to the paid plans of DeepL Translate and Google Translate, you will be able to access higher APIs than the free plan, which will further improve the performance of this extension. Break language barriers with this extension!
Základní Informace o Rozšíření
Název | Twitch Chat Translation |
ID | fhpfpbkkgoancfjpagdbpolpdianmnhm |
Oficiální URL | https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm |
Popis | Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. |
Velikost souboru | 19.46 KB |
Počet instalací | 1,400 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2022-11-16 |
Datum Vydání | 2022-11-15 |
Hodnocení | 1.22/5 Celkem 9 Hodnocení |
Vývojář | Sei Watson |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Chat Translation", "description": "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. ", "version": "1.0", "icons": { "48": "images\/icon-48.png" }, "background": { "service_worker": "scripts\/background.js", "persisten": false }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.twitch.tv\/*" ], "exclude_matches": [], "js": [ "scripts\/content-script.js" ] } ], "action": { "default_icon": { "48": "images\/icon-48.png" } }, "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "https:\/\/api-free.deepl.com\/*" ], "options_ui": { "page": "config.html", "open_in_tab": false } } |