ChatGPT-theme

ChatGPT-theme

让 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": "ChatGPT-theme",
  "version": "1.0.3",
  "description": "让 ChatGPT 页面拥有一个好看的主题",
  "icons": {
    "64": "images/logo.png",
    "128": "images/logo_grey.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "ChatGPT-theme",
    "default_icon": {
      "128": "images/logo_grey.png"
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat/*"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/inject.js"
      ]
    },
    {
      "matches": [
        "https://www.baidu.com/s*",
        "https://www.baidu.com/"
      ],
      "css": [
        "css/github-dark.min.css",
        "css/chatgpt.css"
      ],
      "js": [
        "js/markdown.js",
        "js/highlight.min.js",
        "js/chatgpt.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/close.png",
        "/images/logo.png"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "author": "Karl_fang"
}