ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
Wat is ChatGPT Terminal Theme?
ChatGPT Terminal Theme is een Chrome-extensie ontwikkeld door Sen Lin, en de belangrijkste functie is "Customize the look of the OpenAI ChatGPT.".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Terminal Theme
Download ChatGPT Terminal Theme-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
** 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. Basisinformatie over de Extensie
| Naam | |
| ID | gklcfplkibblhbjhafebgmiaepliflmc |
| Officiële URL | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
| Beschrijving | Customize the look of the OpenAI ChatGPT. |
| Bestandsgrootte | 16.1 KB |
| Aantal Installaties | 40 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2023-08-23 |
| Publicatiedatum | 2023-08-23 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | Sen Lin |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |