Twitch Chat Translation

Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.

Qu'est-ce que Twitch Chat Translation ?

Twitch Chat Translation est une extension Chrome développée par Sei Watson, et sa fonction principale est "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Chat Translation

Téléchargez les fichiers d'extension Twitch Chat Translation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Twitch Chat Translation Twitch Chat Translation
ID fhpfpbkkgoancfjpagdbpolpdianmnhm
URL Officiel https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm
Description Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Taille du Fichier 19.46 KB
Nombre d'Installations 1,400
Version Actuelle 1.0
Dernière Mise à Jour 2022-11-16
Date de Publication 2022-11-15
Évaluation 1.22/5 Total 9 Évaluations
Développeur Sei Watson
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}