VoiceWave: Voice mode for AI chatbots

Have voice chat with DeepSeek, ChatGPT, and other AI chatbots. Activate voice mode, speech recognition, text-to-speech, and more.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extensionName__",
  "version": "4.18.90",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "incognito": "split",
  "icons": {
    "128": "assets/icons/icon.png"
  },
  "action": {
    "default_title": "__MSG_extensionTitle__",
    "default_icon": "assets/icons/icon.png",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "idle/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}