GPT Theme
A Chrome extension to change the Theme ChatGPT
什么是GPT Theme?
GPT Theme是由Leah开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to change the Theme ChatGPT”。
扩展截图
下载GPT Theme扩展crx文件
下载GPT Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome extension to change the theme of ChatGPT - dark mode/light mode - design your own input color and send button icon ChatGPT 主题插件 -有夜晚护眼/白天两种模式 -自定义你的发送框和发送键
扩展基本信息
名称 | GPT Theme |
ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
官方URL | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
简介 | A Chrome extension to change the Theme ChatGPT |
文件大小 | 55.05 KB |
安装次数 | 32 |
当前版本 | 1.1 |
更新时间 | 2023-11-10 |
上架时间 | 2023-11-05 |
评分 | 3.67/5 共3次评分 |
开发者 | Leah |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Theme", "version": "1.1", "description": "A Chrome extension to change the Theme ChatGPT", "permissions": [ "storage", "activeTab" ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "icons": { "48": "icon.png" } } |