Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Что такое Google Calendar Gray Weekends?

Google Calendar Gray Weekends - это расширение Chrome, разработанное msteffen.developer, и его основная функция - "Turn weekend days light gray in Google Calendar".

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

screenshot

Скачать файл CRX расширения Google Calendar Gray Weekends

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

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

                        Sets the background color of weekend days to light gray in Google calendar

Very simple, and currently US/English only (it has "Saturday" and "Sunday" hard-coded). Source is at https://github.com/msteffen/gcal-gray-weekends (you can report bugs as well)                    

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

Название Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
Официальный URL https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
Описание Turn weekend days light gray in Google Calendar
Размер файла 6.77 KB
Количество установок 2,544
Текущая Версия 0.1.1
Последнее Обновление 2019-04-29
Дата публикации 2019-04-29
Рейтинг 4.61/5 Всего 18 оценок
Разработчик msteffen.developer
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/msteffen/gcal-gray-weekends
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Calendar Gray Weekends",
    "version": "0.1.1",
    "description": "Turn weekend days light gray in Google Calendar",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}