YouTube™ Comment Translate

YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube™ Comment Translate",
  "version": "1.2.4",
  "description": "Automatically translate YouTube comments using the Google-Translate API",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "inject.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "manifest_version": 3,
  "content_security_policy": {},
  "host_permissions": [
    "*://*.youtube.com/*"
  ]
}