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. 擴展基本資訊
| 名稱 | |
| ID | gklcfplkibblhbjhafebgmiaepliflmc |
| 官方網址 | 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"
}
} | |