Twitch Chat Translation
Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
什麼是Twitch Chat Translation?
Twitch Chat Translation是由Sei Watson開發的Chrome擴展程式,該擴展的主要功能是“Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.”。
擴展截圖
下載Twitch Chat Translation擴展crx文件
下載Twitch Chat Translation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } } |