Video CC translator

You can translate closed captions provided by video platforms (Udemy, Udacity, Youtube) into your preferred language.

Video CC translatorคืออะไร?

Video CC translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://video-cc-translator.github.io และคุณลักษณะหลักของมันคือ "You can translate closed captions provided by video platforms (Udemy, Udacity, Youtube) into your preferred language."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video CC translator

ดาวน์โหลดไฟล์ส่วนขยาย Video CC translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        💡 Translator Features
- Supports all languages ​​provided by Google Translate.
- Can be used in full screen.
- Subtitle position can be changed.
- You can set the subtitle style.

⚡️ Supported sites
- Udemy
- Udacity
- Youtube 🔥

Send any questions or suggestions about this extension to [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video CC translator Video CC translator
ID fhbpmacbgklobobcieiaoibpjhdnmcfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-cc-translator/fhbpmacbgklobobcieiaoibpjhdnmcfn
คำอธิบาย You can translate closed captions provided by video platforms (Udemy, Udacity, Youtube) into your preferred language.
ขนาดไฟล์ 295 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2.3.2
อัปเดตครั้งล่าสุด 2022-12-05
วันที่เผยแพร่ 2022-02-28
คะแนน 4.53/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา https://video-cc-translator.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr,vi,tr,es,pt-BR,pt-PT,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2.3.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/course\/*\/learn\/*",
                "https:\/\/learn.udacity.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon.png",
            "24": "icon.png",
            "32": "icon.png"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}