LiveTL - Translation Filter for Streams

Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!

¿Qué es LiveTL - Translation Filter for Streams?

LiveTL - Translation Filter for Streams es una extensión de Chrome desarrollada por Kento Nishi, y su función principal es "Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión LiveTL - Translation Filter for Streams

Descarga archivos de extensión LiveTL - Translation Filter for Streams 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

                        Have you ever wanted live translations for HoloLive/Vtuber streams? Well, look no further than LiveTL!

LiveTL (Live TransLate) is a browser extension that separates translations from regular chat messages in YouTube and Twitch streams. It includes the following features:
* Filter translations for your language (messages tagged with [en], es -, etc.)
* Select your favorite translators
* Ban spammers polluting translations
* Freely resizable chat, translation panel, and stream
* Optimized YouTube chat with HyperChat
* Archived stream (VOD) support
* Custom user/mod filters

You can download LiveTL on other platforms too:
http://livetl.app/                    

Información Básica de la Extensión

Nombre LiveTL - Translation Filter for Streams LiveTL - Translation Filter for Streams
ID moicohcfhhbmmngneghfjfjpdobmmnlg
URL Oficial https://chromewebstore.google.com/detail/livetl-translation-filter/moicohcfhhbmmngneghfjfjpdobmmnlg
Descripción Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!
Tamaño del Archivo 2.47 MB
Cantidad de Instalaciones 32,150
Versión Actual 8.3.15
Última Actualización 2024-02-26
Fecha de Publicación 2020-11-26
Calificación 4.86/5 Total de 699 Calificaciones
Desarrollador Kento Nishi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://livetl.app/
URL de la Página de Ayuda https://discord.gg/uJrV3tmthg
URL de la Página de Política de Privacidad https://livetl.app/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LiveTL - Translation Filter for Streams",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.youtube.com\/*?*",
        "https:\/\/www.youtube.com\/youtubei\/v1\/live_chat\/get_live_chat\/*",
        "https:\/\/www.youtube.com\/youtubei\/v1\/live_chat\/get_live_chat_replay\/*",
        "https:\/\/www.twitch.tv\/*"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "128": ".\/img\/128x128.png"
    },
    "browser_action": {
        "default_icon": ".\/img\/48x48.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*",
                "https:\/\/www.youtube.com\/live_chat_replay*",
                "https:\/\/studio.youtube.com\/live_chat*",
                "https:\/\/studio.youtube.com\/live_chat_replay*"
            ],
            "js": [
                "chat-interceptor.bundle.js",
                "chat.bundle.js",
                "injector.bundle.js",
                "translatormode.bundle.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/error*?*"
            ],
            "js": [
                "workaround-injector.bundle.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "twitch-injector.bundle.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.js",
        "*.html",
        "*.png",
        "*.gif",
        "*.mp4"
    ],
    "description": "Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!",
    "version": "8.3.15",
    "incognito": "split"
}