ChatGPT Terminal Theme

Customize the look of the OpenAI ChatGPT.

¿Qué es ChatGPT Terminal Theme?

ChatGPT Terminal Theme es una extensión de Chrome desarrollada por Sen Lin, y su función principal es "Customize the look of the OpenAI ChatGPT.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT Terminal Theme

Descarga archivos de extensión ChatGPT Terminal Theme en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ** 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.                    

Información Básica de la Extensión

Nombre ChatGPT Terminal Theme ChatGPT Terminal Theme
ID gklcfplkibblhbjhafebgmiaepliflmc
URL Oficial https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc
Descripción Customize the look of the OpenAI ChatGPT.
Tamaño del Archivo 16.1 KB
Cantidad de Instalaciones 40
Versión Actual 1.0
Última Actualización 2023-08-23
Fecha de Publicación 2023-08-23
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Sen Lin
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}