YouTube™ subtitles and dubbing

YouTube™ subtitles and dubbing

Free subtitle and dubbing service! Click to activate, applicable to YouTube™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.4.9",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Dengrc",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "https://www.youtube.com/"
  ],
  "action": {
    "default_icon": {
      "128": "images/icon128.png"
    },
    "default_title": "__MSG_appName__"
  },
  "icons": {
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/crypto-js.min.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/injected.js",
        "js/xhook.min.js",
        "js/ytplayer.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}