Lightsoff

Turn all youtube into the dark but leaving the video you are watching, visible.

Что такое Lightsoff?

Lightsoff - это расширение Chrome, разработанное Denis Ciccale, и его основная функция - "Turn all youtube into the dark but leaving the video you are watching, visible.".

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

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

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

                        Turn all youtube into the dark but leaving the video you are watching, visible.                    

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

Название Lightsoff Lightsoff
ID bjdkpnibhhhelepfmnknbkifbogllcpp
Официальный URL https://chrome.google.com/webstore/detail/lightsoff/bjdkpnibhhhelepfmnknbkifbogllcpp
Описание Turn all youtube into the dark but leaving the video you are watching, visible.
Размер файла 86.22 KB
Количество установок 38
Текущая Версия 1.0.2
Последнее Обновление 2017-04-18
Дата публикации 2017-04-18
Рейтинг 1.67/5 Всего 6 оценок
Разработчик Denis Ciccale
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lightsoff",
    "description": "Turn all youtube into the dark but leaving the video you are watching, visible.",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "lightsoff.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "css": [
                "lightsoff.css"
            ],
            "matches": [
                "http:\/\/*.youtube.com\/watch*",
                "https:\/\/*.youtube.com\/watch*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Toggle Lightsoff",
        "default_icon": "icon128.png"
    },
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}