ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
什么是ChatGPT Terminal Theme?
ChatGPT Terminal Theme是由Sen Lin开发的Chrome扩展程序,该扩展的主要功能是“Customize the look of the OpenAI ChatGPT.”。
扩展截图
下载ChatGPT Terminal Theme扩展crx文件
下载ChatGPT Terminal Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
** Don't forget to set your ChatGPT to "dark" mode for the correct effect. ** Change your ChatGPT interface to enjoy the timeless feel of a classic terminal interface. You can also choose the Blue or Red themes.
扩展基本信息
名称 | ChatGPT Terminal Theme |
ID | gklcfplkibblhbjhafebgmiaepliflmc |
官方URL | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
简介 | Customize the look of the OpenAI ChatGPT. |
文件大小 | 16.1 KB |
安装次数 | 40 |
当前版本 | 1.0 |
更新时间 | 2023-08-23 |
上架时间 | 2023-08-23 |
评分 | 5.00/5 共1次评分 |
开发者 | Sen Lin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Terminal Theme", "version": "1.0", "description": "Customize the look of the OpenAI ChatGPT.", "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ { "resources": [ "styles_blue.css", "styles_red.css", "terminal.css" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "gptThemeLogo.png", "48": "gptThemeLogo.png", "128": "gptThemeLogo.png" } }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "gptThemeLogo.png", "48": "gptThemeLogo.png", "128": "gptThemeLogo.png" } } |