Amoled Dark Mode for ChatGPT

A Chrome extension to toggle dark mode for ChatGPT.

Τι είναι το Amoled Dark Mode for ChatGPT;

Το Amoled Dark Mode for ChatGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Darin Menezes, και η κύρια λειτουργία του είναι "A Chrome extension to toggle dark mode for ChatGPT.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Amoled Dark Mode for ChatGPT

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

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

                        The "Amoled Dark Mode for ChatGPT" Chrome extension offers several fantastic benefits to users! 😎🌙

Eye Comfort: 🌟

Reduce eye strain with a sleek, amoled-friendly dark theme.
Enjoy a more comfortable reading experience during extended usage.

Battery Savings: 🔋

Conserve battery life on devices with amoled screens.
Extend your browsing time without worrying about recharging.

Seamless Integration: 🔄

Effortlessly switch between amoled dark and default dark modes with a simple toggle switch.
No manual refreshes needed; the smart observer ensures continuous dark mode browsing.

By installing this extension, you not only enhance the aesthetics of your ChatGPT interface but also enjoy tangible benefits such as reduced eye strain, improved battery usage, and a more visually appealing chat experience! 🚀💬                    

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

Όνομα Amoled Dark Mode for ChatGPT Amoled Dark Mode for ChatGPT
ID aglfigeheodccgeodjbimolajpjfaoge
Επίσημο URL https://chromewebstore.google.com/detail/amoled-dark-mode-for-chat/aglfigeheodccgeodjbimolajpjfaoge
Περιγραφή A Chrome extension to toggle dark mode for ChatGPT.
Μέγεθος Αρχείου 7.85 KB
Αριθμός Εγκαταστάσεων 74
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2024-02-16
Ημερομηνία Δημοσίευσης 2023-11-13
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Darin Menezes
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amoled Dark Mode for ChatGPT",
    "version": "1.2",
    "description": "A Chrome extension to toggle dark mode for ChatGPT.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    }
}