ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
ChatGPT Terminal Themeคืออะไร?
ChatGPT Terminal Theme เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sen Lin และคุณลักษณะหลักของมันคือ "Customize the look of the OpenAI ChatGPT."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Terminal Theme
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |