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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
** 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" } } |