Gmail Dark Mode

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

Apa itu Gmail Dark Mode?

Gmail Dark Mode adalah ekstensi Chrome yang dikembangkan oleh https://nighteye.app, dan fitur utamanya adalah "Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gmail Dark Mode

Unduh file ekstensi Gmail Dark Mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Gmail Dark Mode Gmail Dark Mode
ID pmdghmdjjojjeajflmpgnambocpnpiea
URL Resmi https://chromewebstore.google.com/detail/gmail-dark-mode/pmdghmdjjojjeajflmpgnambocpnpiea
Deskripsi Gmail Dark Mode allows you quickly to enable a dark theme for Gmail.
Ukuran File 197 KB
Jumlah Instalasi 6,000
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2023-09-14
Tanggal Publikasi 2022-04-27
Penilaian 4.29/5 Total 14 Penilaian
Pengembang https://nighteye.app
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://nighteye.app/support
URL Halaman Kebijakan Privasi https://nighteye.app/privacy-policy
Bahasa yang Didukung 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"
    }
}