Planner - Dark Mode

Take Microsoft Planner to the dark side!

Что такое Planner - Dark Mode?

Planner - Dark Mode - это расширение Chrome, разработанное Marty Harris, и его основная функция - "Take Microsoft Planner to the dark side!".

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

screenshot
screenshot
screenshot

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

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

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

                        Makes Microsoft Planner render in Dark Mode - the same as when it renders within Teams configured for Dark Mode. It only uses CSS classes and styles that Microsoft include within the product - it doesn't add any new styles, it simply forces the selection of Dark Mode.

Note that Microsoft often change Planner and how it renders, so this may stop working at any time!

This extension does not collect any Planner or identity or other data. It only changes pages hosted at tasks.microsoft.com.                    

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

Название Planner - Dark Mode Planner - Dark Mode
ID mnmohepacnhlohgdefiieeglgijicomo
Официальный URL https://chromewebstore.google.com/detail/planner-dark-mode/mnmohepacnhlohgdefiieeglgijicomo
Описание Take Microsoft Planner to the dark side!
Размер файла 35.46 KB
Количество установок 812
Текущая Версия 0.1
Последнее Обновление 2021-03-09
Дата публикации 2021-03-08
Рейтинг 3.67/5 Всего 12 оценок
Разработчик Marty Harris
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Planner - Dark Mode",
    "version": "0.1",
    "description": "Take Microsoft Planner to the dark side!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tasks.office.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "PlannerDarkMode.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "DarkPlanner128.png"
    }
}