ChatGPT网页中转

ChatGPT网页中转

彻底解决ChatGPT plugin、web browsering访问网络出错的问题

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT网页中转",
  "description": "彻底解决ChatGPT plugin、web browsering访问网络出错的问题",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/MacMicro_16pt@2x.png",
    "32": "images/MacSmall_32pt@2x.png",
    "128": "images/MacMedium_128pt@2x.png"
  }
}