ChatGPT Command V1.0

ChatGPT Command V1.0

Support autocompleted by your command

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Command V1.0",
  "description": "Support autocompleted by your command ",
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  },
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-4e8dfad9.js"
      ],
      "all_frames": true,
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "assets/index-4592728c.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "src/options/index.html",
  "permissions": [
    "storage"
  ],
  "version": "1.0.3",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "src/content-script/index.ts"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "resources": [
        "assets/runtime-dom.esm-bundler-eaa117ea.js",
        "assets/_plugin-vue_export-helper-c27b6911.js",
        "assets/index.ts-25336384.js"
      ],
      "use_dynamic_url": true
    }
  ]
}