ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
Hvad er ChatGPT Terminal Theme?
ChatGPT Terminal Theme er en Chrome-udvidelse udviklet af Sen Lin, og dens hovedfunktion er "Customize the look of the OpenAI ChatGPT.".
Udvidelsesskærmbilleder
Download ChatGPT Terminal Theme-udvidelses-CRX-fil
Download ChatGPT Terminal Theme-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
** 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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | gklcfplkibblhbjhafebgmiaepliflmc |
| Officiel URL | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
| Beskrivelse | Customize the look of the OpenAI ChatGPT. |
| Filstørrelse | 16.1 KB |
| Antal Installationer | 40 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2023-08-23 |
| Udgivelsesdato | 2023-08-23 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Sen Lin |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |