Night Mode lite

A Simple Night Mode extension for lightweight websities and streaming sities

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

Night Mode lite - это расширение Chrome, разработанное Rejul Raghu, и его основная функция - "A Simple Night Mode extension for lightweight websities and streaming sities".

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

screenshot
screenshot
screenshot

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

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

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

                        Night Mode lite is simple, lightweight & privacy friendly browser add-on for lightweight websites, text-reading websites and streaming website sites, that helps you quickly turn your current page to dark . 

Night Mode lite contains simple  ON|OFF switch which enables you to easily and quickly turn the dark mode ON or OFF.


Note: Please close all tabs before installing/enable Night Mode lite (add-on won't effect tabs that are opened before installation/enable, unless reloaded). 'Night mode lite' not intended for heavily customised websites.                    

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

Название Night Mode lite Night Mode lite
ID kaciggfbbmkcohjhojhbipdlofgngfmj
Официальный URL https://chrome.google.com/webstore/detail/night-mode-lite/kaciggfbbmkcohjhojhbipdlofgngfmj
Описание A Simple Night Mode extension for lightweight websities and streaming sities
Размер файла 22.19 KB
Количество установок 2,000
Текущая Версия 1.0
Последнее Обновление 2019-08-03
Дата публикации 2019-07-30
Рейтинг 3.33/5 Всего 3 оценок
Разработчик Rejul Raghu
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Night Mode lite",
    "version": "1.0",
    "manifest_version": 2,
    "description": "A Simple Night Mode extension for lightweight websities and streaming sities ",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Night Mode lite",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "storage"
    ]
}