Talk to Poe AI

Talk to Poe AI

Talk to Poe AI and hear responses in a natural voice. Voice control & read-aloud for Poe's all AI including Sage, GPT-4 and Claude+.

Merlin
Additional files are visible only to premium users

manifest.json


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