DeBabel — Auto translate for online courses

Auto Translate captions with Deepl API on Udemy and Coursera.

什么是DeBabel — Auto translate for online courses?

DeBabel — Auto translate for online courses是由takumi-hash开发的Chrome扩展程序,该扩展的主要功能是“Auto Translate captions with Deepl API on Udemy and Coursera.”。

扩展截图

screenshot
screenshot

下载DeBabel — Auto translate for online courses扩展crx文件

下载DeBabel — Auto translate for online courses扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        💡Unlock the world of e-learning with DeBabel.💡

DeBabel is the ultimate tool for global e-learning. With our extension, you can easily translate Udemy captions into multiple languages with the power of the DeepL API. Never let language barriers hold you back again.

⭐How to Use⭐
1. Please acquire a DeepL API Key from official page first. You can get one for free from here (https://www.deepl.com/ja/pro-api).
2. Open DeBabel settings by right-clicking on the extension icon and select “Options”.
3. Paste the API key in the text area, and hit “Save”, and choose the target language (your familiar language).
4. You’re ready🥳 Open up Udemy or Coursera and start a video. Translate will start automatically.                    

扩展基本信息

名称 DeBabel — Auto translate for online courses DeBabel — Auto translate for online courses
ID mmagihnekamepojkfmakjaclpddnpjji
官方URL https://chromewebstore.google.com/detail/debabel-%E2%80%94-auto-translate/mmagihnekamepojkfmakjaclpddnpjji
简介 Auto Translate captions with Deepl API on Udemy and Coursera.
文件大小 2.3 MB
安装次数 91
当前版本 3.0
更新时间 2023-01-30
上架时间 2023-01-12
评分 5.00/5 共2次评分
开发者 takumi-hash
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DeBabel \u2014 Auto translate for online courses",
    "description": "Auto Translate captions with Deepl API on Udemy and Coursera.",
    "version": "3.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_page": "options\/options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/*",
                "https:\/\/*.coursera.org\/*"
            ],
            "js": [
                "src\/libs\/jquery-3.6.0.min.js",
                "src\/content-script.js"
            ],
            "css": [
                "src\/custom-style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}