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是由https://video-cc-translator.github.io开发的Chrome扩展程序,该扩展的主要功能是“You can translate closed captions provided by video platforms (Udemy, Udacity, Youtube) into your preferred language.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Video CC translator扩展crx文件

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