Speech to Text for ChatGPT

Speech to Text for ChatGPT

Adds a speech to text microphone into the ChatGPT website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Speech to Text for ChatGPT",
  "version": "0.0.4",
  "description": "Adds a speech to text microphone into the ChatGPT website.",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/mic.png",
        "assets/mic-active.png",
        "assets/styles.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}