Twitch Chat Translation

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

Was ist Twitch Chat Translation?

Twitch Chat Translation ist eine Chrome-Erweiterung, die von Sei Watson entwickelt wurde, und ihr Hauptmerkmal ist "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.".

Erweiterungsscreenshots

screenshot
screenshot

Twitch Chat Translation-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Chat Translation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Twitch Chat Translation Twitch Chat Translation
ID fhpfpbkkgoancfjpagdbpolpdianmnhm
Offizielle URL https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm
Beschreibung Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Dateigröße 19.46 KB
Installationsanzahl 1,400
Aktuelle Version 1.0
Letztes Update 2022-11-16
Veröffentlichungsdatum 2022-11-15
Bewertung 1.22/5 Insgesamt 9 Bewertungen
Entwickler Sei Watson
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}