ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
Co to jest ChatGPT Terminal Theme?
ChatGPT Terminal Theme to rozszerzenie Chrome opracowane przez Sen Lin, a jego główną funkcją jest „Customize the look of the OpenAI ChatGPT.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT Terminal Theme
Pobierz pliki rozszerzeń ChatGPT Terminal 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
** 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.
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT Terminal Theme |
ID | gklcfplkibblhbjhafebgmiaepliflmc |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
Opis | Customize the look of the OpenAI ChatGPT. |
Rozmiar pliku | 16.1 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-08-23 |
Data Publikacji | 2023-08-23 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Sen Lin |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |