Twitch Chat Translation

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

¿Qué es Twitch Chat Translation?

Twitch Chat Translation es una extensión de Chrome desarrollada por Sei Watson, y su función principal es "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Twitch Chat Translation

Descarga archivos de extensión Twitch Chat Translation en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Twitch Chat Translation Twitch Chat Translation
ID fhpfpbkkgoancfjpagdbpolpdianmnhm
URL Oficial https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm
Descripción Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Tamaño del Archivo 19.46 KB
Cantidad de Instalaciones 1,400
Versión Actual 1.0
Última Actualización 2022-11-16
Fecha de Publicación 2022-11-15
Calificación 1.22/5 Total de 9 Calificaciones
Desarrollador Sei Watson
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
    }
}