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