Translate and Speak Subtitles for YouTube

Translate and Speak Subtitles for YouTube

Extension convert text subtitles for YouTube into natural-sounding speech using AI technologies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "assets/Logo-128.png",
    "default_popup": "popup.html",
    "default_title": "YouTube Subtitles Speaker and Translator"
  },
  "background": {
    "service_worker": "sw.bundle.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.bundle.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "externally_connectable": {
    "matches": [
      "https://www.youtube.com/*"
    ]
  },
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "icons": {
    "16": "assets/Logo-128.png",
    "32": "assets/Logo-128.png",
    "48": "assets/Logo-128.png",
    "128": "assets/Logo-128.png",
    "512": "assets/Logo-128.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88.0",
  "name": "__MSG_extension_name__",
  "permissions": [
    "storage"
  ],
  "version": "1.0.13",
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "resources": [
        "webpage.bundle.js",
        "ga.bundle.js"
      ],
      "use_dynamic_url": true
    }
  ]
}