Vocha | Voice for ChatGPT

Vocha | Voice for ChatGPT

Voice for ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vocha | Voice for ChatGPT",
  "description": "Voice for ChatGPT",
  "version": "1.0.6",
  "manifest_version": 3,
  "icons": {
    "128": "icons/vocha-logo-128.png",
    "500": "icons/vocha-logo-500.png"
  },
  "background": {
    "service_worker": "/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "/cs.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [],
  "host_permissions": [
    "*://*.openai.com/*"
  ],
  "optional_permissions": [],
  "action": {
    "default_icon": {
      "48": "icons/vocha-logo-48.png"
    },
    "default_title": "Vocha | Voice for ChatGPT"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "nj.js"
      ],
      "matches": [
        "*://*.openai.com/*"
      ]
    }
  ]
}