Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

Что такое Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode - это расширение Chrome, разработанное Music For Trees, и его основная функция - "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

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

screenshot

Скачать файл CRX расширения Night Owl - Smart Dark Mode

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

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

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

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

Название Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
Официальный URL https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Описание Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Размер файла 6.55 KB
Количество установок 55
Текущая Версия 1.0
Последнее Обновление 2023-04-13
Дата публикации 2023-04-13
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Music For Trees
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://policies.google.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}