ChatGPT Theme Switcher

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

Τι είναι το ChatGPT Theme Switcher;

Το ChatGPT Theme Switcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mnrzmalik, και η κύρια λειτουργία του είναι "Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Theme Switcher

Λήψη αρχείων επέκτασης ChatGPT Theme Switcher σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Theme Switcher ChatGPT Theme Switcher
ID lhlamdabcdkbcfkcdielhappmlalbacd
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-theme-switcher/lhlamdabcdkbcfkcdielhappmlalbacd
Περιγραφή Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…
Μέγεθος Αρχείου 37.44 KB
Αριθμός Εγκαταστάσεων 65
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-06-13
Ημερομηνία Δημοσίευσης 2023-06-12
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής mnrzmalik
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.linkedin.com/in/nrzmalik/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.linkedin.com/in/nrzmalik/
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}