Twitch Chat Translation
Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Twitch Chat Translation क्या है?
Twitch Chat Translation Sei Watson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Chat Translation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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!
एक्सटेंशन की मूल जानकारी
नाम | Twitch Chat Translation |
ID | fhpfpbkkgoancfjpagdbpolpdianmnhm |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm |
विवरण | Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. |
फ़ाइल का आकार | 19.46 KB |
स्थापना संख्या | 1,400 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-11-16 |
प्रकाशन तिथि | 2022-11-15 |
रेटिंग | 1.22/5 कुल 9 रेटिंग्स |
डेवलपर | Sei Watson |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } } |