ChatSider:Free ChatGPT Assistant(GPT4)

ChatSider:Free ChatGPT Assistant(GPT4)

GPT Assistant is an intelligence assistant that you can use in any website. Use OpenAI ChatGPT to realize writing, translation, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/new_ico.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "img/new_ico.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/inject.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/chat.js"
      ],
      "css": [
        "css/inject.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://wenku.baidu.com/*",
        "https://www.doc88.com/*",
        "https://www.docin.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/kodepay.js"
      ],
      "matches": [
        "https://kodepay.io/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "js/getKodePayEmail.js"
      ],
      "matches": [
        "https://checkout.stripe.com/c/pay/*"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "options.html",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "scripting",
    "declarativeNetRequestWithHostAccess"
  ],
  "version": "1.0.18",
  "web_accessible_resources": [
    {
      "resources": [
        "js/normal.js",
        "js/docText.js",
        "chat.html",
        "pay.html",
        "img/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "homepage_url": "https://chrome.google.com/webstore/detail/newcopy/nnadblfkldnlfoojndefddknlhmibjme?utm_medium=extension&utm_source=newcopy"
}