Gmail Dark Mode

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

What is Gmail Dark Mode?

Gmail Dark Mode is a Chrome extension developed by https://nighteye.app, and its main feature is "Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.".

Extension Screenshots

screenshot

Download Gmail Dark Mode Extension CRX File

Download Gmail Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Gmail Dark Mode Gmail Dark Mode
ID pmdghmdjjojjeajflmpgnambocpnpiea
Official URL https://chromewebstore.google.com/detail/gmail-dark-mode/pmdghmdjjojjeajflmpgnambocpnpiea
Description Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.
File Size 197 KB
Installation Count 6,000
Current Version 1.1.0
Last Updated 2023-09-14
Publish Date 2022-04-27
Rating 4.29/5 Total 14 Ratings
Developer https://nighteye.app
Email [email protected]
Payment Type free
Help Page URL https://nighteye.app/support
Privacy Policy Page URL https://nighteye.app/privacy-policy
Supported Languages 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"
    }
}