GPT Theme
A Chrome extension to change the Theme ChatGPT
Что такое GPT Theme?
GPT Theme - это расширение Chrome, разработанное Leah, и его основная функция - "A Chrome extension to change the Theme ChatGPT".
Снимки экрана расширения
Скачать файл CRX расширения GPT Theme
Скачайте файлы расширений GPT Theme в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A Chrome extension to change the theme of ChatGPT - dark mode/light mode - design your own input color and send button icon ChatGPT 主题插件 -有夜晚护眼/白天两种模式 -自定义你的发送框和发送键
Основная информация о расширении
Название | GPT Theme |
ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
Официальный URL | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
Описание | A Chrome extension to change the Theme ChatGPT |
Размер файла | 55.05 KB |
Количество установок | 32 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-11-10 |
Дата публикации | 2023-11-05 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | Leah |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Theme", "version": "1.1", "description": "A Chrome extension to change the Theme ChatGPT", "permissions": [ "storage", "activeTab" ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "icons": { "48": "icon.png" } } |