DeBabel — Auto translate for online courses

DeBabel — Auto translate for online courses

Auto Translate captions with Deepl API on Udemy and Coursera.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DeBabel — 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
    }
  ]
}