AI Voice Over for YouTube

AI Voice Over for YouTube

Experience foreign language YouTube videos in your native language

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "./public/index.html"
  },
  "permissions": [
    "identity",
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "./public/contentScript.js"
      ]
    }
  ],
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "icons": {
    "128": "./assets/logo9.png",
    "256": "./assets/logo9.png"
  },
  "short_name": "AIVO",
  "version": "1.2",
  "background": {
    "service_worker": "./public/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; script-src-elem 'self' 'unsafe-inline';"
  },
  "oauth2": {
    "client_id": "165672566701-qioenp5p0rfi2omjrjbkug929eg1aalp.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}