Auto Translate for YouTube™ captions

Auto Translate for YouTube™ captions

This extension will activate the auto-translate feature of YouTube™ automatically, even if it's not available in the menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "icon_32.png",
    "default_title": "Turn automatic subtitle translation on/off",
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.ts.f50f30c3.99dc2880.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*.youtube.com/*",
        "*://*.facebook.com/*",
        "*://twitter.com/*",
        "*://*.twitter.com/*",
        "*://*.linkedin.com/*"
      ],
      "css": [
        "assets/index.fdc3dca6.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*.youtube.com/*",
    "*://*.facebook.com/*",
    "*://*.twitter.com/*",
    "*://twitter.com/*",
    "*://*.linkedin.com/*",
    "*://*.anotepad.com/*",
    "*://anotepad.com/*"
  ],
  "version": "0.15",
  "manifest_version": 3,
  "name": "Auto Translate for YouTube™ captions",
  "description": "This extension will activate the auto-translate feature of YouTube™ automatically, even if it's not available in the menu.",
  "permissions": [
    "storage",
    "scripting",
    "declarativeNetRequest"
  ],
  "icons": {
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "src/content-script/index.ts"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://*.linkedin.com/*",
        "*://*.twitter.com/*",
        "*://*.youtube.com/*",
        "*://twitter.com/*"
      ],
      "resources": [
        "assets/index.1eb99c87.js",
        "assets/index.ts.f50f30c3.js"
      ],
      "use_dynamic_url": true
    }
  ]
}