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. Основная информация о расширении
| Название | |
| 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"
}
} | |