SayAI - Audio for ChatGPT

SayAI - Audio for ChatGPT

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.16",
  "default_locale": "en",
  "author": "Nodetics",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "110.0"
    }
  },
  "description": "Adds voice recording and spoken answers to ChatGPT UI.",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "host_permissions": [
    "https://api.openai.com/*",
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://chat.openai.com/*"
      ],
      "js": [
        "js/util.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://chatgpt.com/*",
        "https://chat.openai.com/*"
      ]
    }
  ]
}