ChatGPT Theme Switcher

Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…

¿Qué es ChatGPT Theme Switcher?

ChatGPT Theme Switcher es una extensión de Chrome desarrollada por mnrzmalik, y su función principal es "Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT Theme Switcher

Descarga archivos de extensión ChatGPT Theme Switcher 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

                        Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface. This extension adds a user-friendly button that allows you to seamlessly toggle between Light and Dark modes on the OpenAI Chat webpage, catering to your visual preferences and lighting conditions.

Features:

1. Effortless Theme Switching: With just a click, easily switch between Light and Dark themes.

2. Intuitive User Interface: A simple, minimalistic, and elegant button placed strategically for easy access.

3. Auto-Detection: The extension automatically detects and preserves your theme preference.

4 .Dynamic Response: The extension adapts dynamically to changes in the webpage and window resizing events, ensuring a smooth user experience.

Whether you prefer the Light theme for its classic, crisp visibility, or the Dark theme for its eye-friendly, reduced-glare interface, the ChatGPT Theme Switcher is your go-to tool for effortless theme management on the OpenAI Chat website.                    

Información Básica de la Extensión

Nombre ChatGPT Theme Switcher ChatGPT Theme Switcher
ID lhlamdabcdkbcfkcdielhappmlalbacd
URL Oficial https://chromewebstore.google.com/detail/chatgpt-theme-switcher/lhlamdabcdkbcfkcdielhappmlalbacd
Descripción Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…
Tamaño del Archivo 37.44 KB
Cantidad de Instalaciones 65
Versión Actual 1.0
Última Actualización 2023-06-13
Fecha de Publicación 2023-06-12
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador mnrzmalik
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.linkedin.com/in/nrzmalik/
URL de la Página de Ayuda https://www.linkedin.com/in/nrzmalik/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Theme Switcher",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}