ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
Cos'è ChatGPT Terminal Theme?
ChatGPT Terminal Theme è un'estensione di Chrome sviluppata da Sen Lin, e la sua funzione principale è "Customize the look of the OpenAI ChatGPT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Terminal Theme
Scarica i file di estensione ChatGPT Terminal Theme in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
** 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. Informazioni di Base sull'Estensione
| Nome | |
| ID | gklcfplkibblhbjhafebgmiaepliflmc |
| URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
| Descrizione | Customize the look of the OpenAI ChatGPT. |
| Dimensione del File | 16.1 KB |
| Conteggio Installazioni | 40 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-08-23 |
| Data di Pubblicazione | 2023-08-23 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Sen Lin |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |