iTour Video Translation

This extension translates video's audio on the current tab to your own language
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "iTour Video Translation",
  "version": "2.0.9",
  "description": "This extension translates video's audio on the current tab to your own language",
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "icons": {
    "16": "static/img/app_icon.png",
    "19": "static/img/app_icon.png",
    "38": "static/img/app_icon.png",
    "48": "static/img/app_icon.png",
    "128": "static/img/app_icon.png"
  },
  "action": {
    "default_icon": "static/img/app_icon.png",
    "default_title": "iTour Video Translation",
    "default_popup": "popup.html"
  },
  "options_page": "option.html",
  "background": {
    "service_worker": "background.main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [],
      "js": [
        "content.main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "downloads",
    "unlimitedStorage",
    "cookies",
    "desktopCapture"
  ]
}