YouTube SubSound

YouTube SubSound

Automatic subtitle dubbing on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.0.8",
  "author": "tgaru",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://youtube.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "main.js",
        "styles.css",
        "_locales/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}