Merge Outlook Calendar

Select the merge view by default when using outlook web calendar

Что такое Merge Outlook Calendar?

Merge Outlook Calendar - это расширение Chrome, разработанное Tyler Elliott, и его основная функция - "Select the merge view by default when using outlook web calendar".

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

screenshot
screenshot

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

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

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

                        When using O365 Outlook on the web. The day view of your calendar defaults by splitting all of your calendars into multiple columns. This extension merges them into a single view by default.

Views can still be toggled using the split/merge toggle in the upper right.                    

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

Название Merge Outlook Calendar Merge Outlook Calendar
ID lickgobohnoilijjmadngpopdnjkalge
Официальный URL https://chromewebstore.google.com/detail/merge-outlook-calendar/lickgobohnoilijjmadngpopdnjkalge
Описание Select the merge view by default when using outlook web calendar
Размер файла 7.33 KB
Количество установок 239
Текущая Версия 1.0.2
Последнее Обновление 2018-01-11
Дата публикации 2018-01-11
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Tyler Elliott
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Merge Outlook Calendar",
    "description": "Select the merge view by default when using outlook web calendar",
    "version": "1.0.2",
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/outlook.office.com\/owa\/?path=\/calendar\/view\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}