VidAI

VidAI

VidAI: Supercharge your YouTube content creation with AI. Enhance video titles, boost SEO, streamline translation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VidAI",
  "description": "VidAI: Supercharge your YouTube content creation with AI. Enhance video titles, boost SEO, streamline translation.",
  "version": "1.5.20",
  "permissions": [
    "storage",
    "tabs",
    "identity"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon.png"
  },
  "background": {
    "service_worker": "dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://studio.youtube.com/*",
        "https://vidai.help/settings"
      ],
      "js": [
        "dist/main.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "dist/youtube.js"
      ]
    }
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "500": "images/icon.png"
  }
}