Daydream Night Mode

Get rid of the sun-like screen and have a sweet Daydream...

Что такое Daydream Night Mode?

Daydream Night Mode - это расширение Chrome, разработанное zankyostudio, и его основная функция - "Get rid of the sun-like screen and have a sweet Daydream...".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Daydream Night Mode

Скачайте файлы расширений Daydream Night Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Get rid of the sun-like screen and take your sweet dream.
Provide dark mode access to all websites with customizable contrast. You can also exclude any website from the extension if the website already provides dark mode.                    

Основная информация о расширении

Название Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
Официальный URL https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Описание Get rid of the sun-like screen and have a sweet Daydream...
Размер файла 10.58 KB
Количество установок 1,004
Текущая Версия 0.1.6
Последнее Обновление 2020-11-20
Дата публикации 2019-06-01
Рейтинг 4.18/5 Всего 11 оценок
Разработчик zankyostudio
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Daydream Night Mode",
    "version": "0.1.6",
    "description": "Get rid of the sun-like screen and have a sweet Daydream...",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "ftp:\/\/*\/*",
        "file:\/\/*\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "DaydreamIcon.png"
    }
}