Voice Typing for ChatGPT

Voice Typing for ChatGPT

A simple extension by Diakiv A.A. that allows users to type text using their voice on chat.openai.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Voice Typing for ChatGPT",
  "version": "1.2.1",
  "description": "A simple extension by Diakiv A.A. that allows users to type text using their voice on chat.openai.com",
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_icon": {
      "48": "icon_48.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}