Translate YouTube™ Comments

Translate YouTube™ Comments

Enable Automatic YouTube Comment Translation using the Google Translate API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "1.0.0",
  "description": "__MSG_extDes__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "inject.js"
      ]
    }
  ],
  "icons": {
    "128": "assets/icons/logo.png"
  },
  "action": {
    "default_icon": {
      "128": "assets/icons/logo.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "manifest_version": 3,
  "content_security_policy": {},
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}