Voice Control for ChatGPT x Mia AI

Voice Control for ChatGPT x Mia AI

Expands ChatGPT with voice control and read aloud.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Voice Control for ChatGPT x Mia AI",
  "version": "3.6.0",
  "description": "Expands ChatGPT with voice control and read aloud.",
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle17147404791.chunk.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/svg/*.svg",
        "assets/png/*.png",
        "assets/webm/*.webm",
        "assets/mp3/*.mp3",
        "icon-128.png",
        "icon-34.png",
        "manifest.json",
        "src/pages/permission/index.html",
        "src/pages/permission/index.js",
        "src/pages/newtab/index.html",
        "src/pages/newtab/index.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}