Promptheus - Converse with ChatGPT

Promptheus - Converse with ChatGPT

Use your voice to talk to ChatGPT with the spacebar! 🎤

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Promptheus - Converse with ChatGPT",
  "version": "1.0.5",
  "description": "Use your voice to talk to ChatGPT with the spacebar! 🎤",
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "16": "./icons/icon-16.png",
    "48": "./icons/icon-48.png",
    "128": "./icons/icon-128.png"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./js/content.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "resources": [
        "js/indexHtml.js",
        "js/onInstalled.js",
        "js/options.js",
        "js/popup.js",
        "js/serviceWorker.js",
        "js/webComponent.js"
      ]
    }
  ]
}