ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
Qu'est-ce que ChatGPT Terminal Theme ?
ChatGPT Terminal Theme est une extension Chrome développée par Sen Lin, et sa fonction principale est "Customize the look of the OpenAI ChatGPT.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Terminal Theme
Téléchargez les fichiers d'extension ChatGPT Terminal Theme au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
** 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.
Informations de Base sur l'Extension
Nom | ChatGPT Terminal Theme |
ID | gklcfplkibblhbjhafebgmiaepliflmc |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
Description | Customize the look of the OpenAI ChatGPT. |
Taille du Fichier | 16.1 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-08-23 |
Date de Publication | 2023-08-23 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Sen Lin |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |