SayAI

SayAI

Adds voice recording and spoken answers to ChatGPT UI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "SayAI",
  "version": "1.0.14",
  "default_locale": "en",
  "author": "Nodetics",
  "description": "Adds voice recording and spoken answers to ChatGPT UI.",
  "permissions": [
    "cookies",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "https://api.openai.com/*",
    "https://chat.openai.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "js/main.js",
        "js/recorder.js",
        "js/texttospeech.js",
        "js/chatgptresponsegrabber.js"
      ],
      "css": [
        "css/custom.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "96": "images/voicechatgpt-icon-96.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "js/listener.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}