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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |