ChatGPT-theme
让 ChatGPT 页面拥有一个好看的主题
什么是ChatGPT-theme?
ChatGPT-theme是由1340449792开发的Chrome扩展程序,该扩展的主要功能是“让 ChatGPT 页面拥有一个好看的主题”。
扩展截图
下载ChatGPT-theme扩展crx文件
下载ChatGPT-theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
让你的 ChatGPT 拥有一个好看的主题页面,可以定制背景图以及聊天气泡的背景颜色,还能隐藏侧边栏,同时适配了明暗两套主题颜色等,现在还增加在百度页面自动同步搜索功能,需要自己的API key才行
扩展基本信息
名称 | ChatGPT-theme |
ID | pmojhaafcblmlphahlilhlkbbefjaaph |
官方URL | https://chromewebstore.google.com/detail/chatgpt-theme/pmojhaafcblmlphahlilhlkbbefjaaph |
简介 | 让 ChatGPT 页面拥有一个好看的主题 |
文件大小 | 134 KB |
安装次数 | 224 |
当前版本 | 1.0.3 |
更新时间 | 2023-03-07 |
上架时间 | 2023-02-17 |
评分 | 5.00/5 共1次评分 |
开发者 | 1340449792 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT-theme", "version": "1.0.3", "description": "\u8ba9 ChatGPT \u9875\u9762\u62e5\u6709\u4e00\u4e2a\u597d\u770b\u7684\u4e3b\u9898", "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" } |