NightMode

Invert Website Colors for Night Viewing

Что такое NightMode?

NightMode - это расширение Chrome, разработанное https://northernsignal.com, и его основная функция - "Invert Website Colors for Night Viewing".

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

screenshot

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

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

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

                        Invert the color and adjust brightness of webpages for viewing at night.  Especially useful for public safety and mobile users.                    

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

Название NightMode NightMode
ID kommocijhfofkmkmionppgkhnhnjpmdc
Официальный URL https://chrome.google.com/webstore/detail/nightmode/kommocijhfofkmkmionppgkhnhnjpmdc
Описание Invert Website Colors for Night Viewing
Размер файла 21.41 KB
Количество установок 492
Текущая Версия 1.0.0
Последнее Обновление 2017-01-14
Дата публикации 2017-01-14
Рейтинг 3.43/5 Всего 7 оценок
Разработчик https://northernsignal.com
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://northernsignal.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "nightmode-128.png",
        "default_popup": "popup.html",
        "default_title": "NightMode (Shift+F11)"
    },
    "commands": {
        "command_toggle_global": {
            "description": "Toggle NightMode ON\/OFF"
        },
        "command_toggle_site": {
            "description": "Toggle Inversion on a Site"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "nightmode.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "description": "Invert Website Colors for Night Viewing",
    "icons": {
        "128": "nightmode-128.png"
    },
    "name": "NightMode",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "version": "1.0.0",
    "short_name": "NightMode",
    "author": "Northern Signal"
}