GPT Theme
A Chrome extension to change the Theme ChatGPT
Co to jest GPT Theme?
GPT Theme to rozszerzenie Chrome opracowane przez Leah, a jego główną funkcją jest „A Chrome extension to change the Theme ChatGPT”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GPT Theme
Pobierz pliki rozszerzeń GPT Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A Chrome extension to change the theme of ChatGPT
- dark mode/light mode
- design your own input color and send button icon
ChatGPT 主题插件
-有夜晚护眼/白天两种模式
-自定义你的发送框和发送键 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| Oficjalny URL | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| Opis | A Chrome extension to change the Theme ChatGPT |
| Rozmiar pliku | 55.05 KB |
| Liczba instalacji | 32 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2023-11-10 |
| Data Publikacji | 2023-11-05 |
| Ocena | 3.67/5 Łącznie 3 Oceny |
| Deweloper | Leah |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
| Obsługiwane Języki | 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"
}
} | |