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