GPT批量问答

GPT批量问答

通过用ChatGPT批量回答你的问题

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT批量问答",
  "author": "Michael",
  "version": "1.0.3",
  "description": "通过用ChatGPT批量回答你的问题",
  "icons": {
    "16": "/image/icon.png",
    "48": "/image/icon.png",
    "128": "/image/icon.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_icon": "/image/icon.png",
    "default_title": "GPT批量提问",
    "badge": "GPT批量提问"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "http://chat.openai.com/*"
      ],
      "js": [
        "/js/content-script.js",
        "/js/worker.js",
        "/js/jquery.js",
        "/js/xlsx.core.min.js"
      ],
      "css": [
        "/css/style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/js/*"
      ]
    }
  ]
}