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"
    }
}