LiveTL - Translation Filter for Streams
Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!
什么是LiveTL - Translation Filter for Streams?
LiveTL - Translation Filter for Streams是由Kento Nishi开发的Chrome扩展程序,该扩展的主要功能是“Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!”。
扩展截图
下载LiveTL - Translation Filter for Streams扩展crx文件
下载LiveTL - Translation Filter for Streams扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/
扩展基本信息
名称 | LiveTL - Translation Filter for Streams |
ID | moicohcfhhbmmngneghfjfjpdobmmnlg |
官方URL | https://chromewebstore.google.com/detail/livetl-translation-filter/moicohcfhhbmmngneghfjfjpdobmmnlg |
简介 | Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers! |
文件大小 | 2.47 MB |
安装次数 | 32,150 |
当前版本 | 8.3.15 |
更新时间 | 2024-02-26 |
上架时间 | 2020-11-26 |
评分 | 4.86/5 共699次评分 |
开发者 | Kento Nishi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://livetl.app/ |
帮助页面URL | https://discord.gg/uJrV3tmthg |
隐私政策页面URL | https://livetl.app/privacy |
支持的语言 | 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" } |