Voice Control for Bard

Voice Control for Bard

Talk to Bard and hear responses in a natural voice. Voice control for Bard in multiple languages. Speech recognition and TTS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "version": "2.3.17",
  "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": [],
  "content_scripts": [
    {
      "matches": [
        "https://bard.google.com/*"
      ],
      "js": [
        "scripts/external-integration.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://bard.google.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}