chatGPT auto speech

chatGPT auto speech

This extension converts chatGPT response text into speech and plays it automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "chatGPT auto speech",
  "version": "1.2",
  "description": "This extension converts chatGPT response text into speech and plays it automatically.",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Listen to chatGPT"
  }
}