Two Way Voice for ChatGPT

Two Way Voice for ChatGPT

This extension for ChatGPT allows you to ask using voice and listen to response.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Two Way Voice for ChatGPT",
  "version": "1.5.4",
  "manifest_version": 3,
  "description": "This extension for ChatGPT allows you to ask using voice and listen to response.",
  "icons": {
    "16": "icons/chatgpt-voice-conversation-logo-16.png",
    "32": "icons/chatgpt-voice-conversation-logo-32.png",
    "48": "icons/chatgpt-voice-conversation-logo-48.png",
    "128": "icons/chatgpt-voice-conversation-logo-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/c/*",
        "https://chat.openai.com/c",
        "https://chat.openai.com/",
        "https://chat.openai.com/?model=*",
        "https://chat.openai.com/chat",
        "https://chat.openai.com/chat/*"
      ],
      "js": [
        "chatgpt_conversation.js"
      ]
    }
  ]
}