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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        💡 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": [
                ""
            ]
        }
    ]
}