Voice control for chatGPT

Voice control for chatGPT

Revolutionary browser extension enables voice chat with ChatGPT, enhancing AI interactions. Upgrade your experience now!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Voice control for chatGPT",
  "version": "1.0.0",
  "description": "Revolutionary browser extension enables voice chat with ChatGPT, enhancing AI interactions. Upgrade your experience now!",
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "logo.png"
  },
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle16923638289.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "logo.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}