Gmail Dark Mode

Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.

Τι είναι το Gmail Dark Mode;

Το Gmail Dark Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://nighteye.app, και η κύρια λειτουργία του είναι "Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.".

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

screenshot

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

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

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

                        Gmail Dark mode is a simple yet powerful extension that does not simply invert the colors of the page. It uses the powerful algorithm of Night Eye to properly convert the Gmail theme into a smooth and eye-caring dark theme.

Why do you need Gmail dark mode?
Dark mode can reduce eye strain, allow you to be more productive, and,  most importantly, give you another layer of protection for your eyes. As we are spending more and more time in front of the screen, our eyes suffer the most from this. Obviously, there is no turning back; we will be spending most of our waking hours staring at screens. Thus something must be done to lift the heavy burden we are putting on our eyesight.

The fact is that we are sending more and more emails, and pretty much all communication is done via email. E-mail is one of those online activities that can literally eat up half of your day. This is why improving how you handle email is a good starting point to minimize the pressure you put on your eyes every day.
Does Gmail dark mode read my emails?
Absolutely not! The extension only analyzes the colors of your page and converts them. It does not read, process, store, or do anything with your content.

Can I enable dark mode on other websites?
Gmail dark mode is specifically made for those who only want to have a dark theme on Gmail. To enable dark mode on any website, please check our other extension - Night Eye - www.nighteye.app

Our website: https://nighteye.app/gmail-dark-mode
Follow us on Twitter: https://twitter.com/nighteye_ext
Like us on Facebook: https://www.facebook.com/night.eye.extension                    

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

Όνομα Gmail Dark Mode Gmail Dark Mode
ID pmdghmdjjojjeajflmpgnambocpnpiea
Επίσημο URL https://chromewebstore.google.com/detail/gmail-dark-mode/pmdghmdjjojjeajflmpgnambocpnpiea
Περιγραφή Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.
Μέγεθος Αρχείου 197 KB
Αριθμός Εγκαταστάσεων 6,000
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2023-09-14
Ημερομηνία Δημοσίευσης 2022-04-27
Αξιολόγηση 4.29/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής https://nighteye.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://nighteye.app/support
URL της Σελίδας Πολιτικής Απορρήτου https://nighteye.app/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail Dark Mode",
    "description": "Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.",
    "homepage_url": "https:\/\/nighteye.app",
    "version": "1.1.0",
    "author": "Promotino Ltd.",
    "icons": {
        "16": "res\/icons\/16.png",
        "48": "res\/icons\/48.png",
        "128": "res\/icons\/128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "_locales\/*",
                "js\/browser-action\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "css": [
                "css\/loading.css"
            ],
            "js": [
                "js\/content\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/*",
        "*:\/\/*.gstatic.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "offline_enabled": true,
    "action": {
        "default_icon": "res\/icons\/64.png",
        "default_popup": "html\/browser-action\/popup.html",
        "default_title": "Gmail Dark Mode"
    },
    "background": {
        "service_worker": "background.js"
    }
}