Udemy Subtitle Translator - Yakuu

Udemy Subtitle Translator - Yakuu

Subtitle translator for Udemy. Also, Show YouTube subtitles to the corresponding language, No need for hierarchical menu selection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.2.0.0",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_appName__",
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content_scripts/youtube.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.udemy.com/*"
      ],
      "js": [
        "content_scripts/udemy.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "declarativeContent"
  ],
  "host_permissions": [
    "https://*.udemy.com/*",
    "https://*.youtube.com/*",
    "https://translate.googleapis.com/*"
  ]
}