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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get live translations for YouTube and Twitch streams, crowdsourced from multilingual viewers!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LiveTL - Translation Filter for Streams एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |