Chat GPT voice

Chat GPT voice

Make GPT chat talk and talk to it with voice

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chat GPT voice",
  "version": "3.001.1043",
  "description": "Make GPT chat talk and talk to it with voice",
  "options_page": "settings.html",
  "permissions": [
    "storage",
    "tabs",
    "tts"
  ],
  "action": {
    "default_popup": "settings.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "sw.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "integrations/chat.openai.js"
      ],
      "css": [
        "integrations/chat.openai.css"
      ]
    }
  ]
}