Twitch Chat Translation

Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.

Twitch Chat Translationคืออะไร?

Twitch Chat Translation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sei Watson และคุณลักษณะหลักของมันคือ "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Chat Translation

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
    }
}