Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Что такое Event Merge for Google Calendar™?
Event Merge for Google Calendar™ - это расширение Chrome, разработанное Amy Ciavolino, и его основная функция - "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Снимки экрана расширения
Скачать файл CRX расширения Event Merge for Google Calendar™
Скачайте файлы расширений Event Merge for Google Calendar™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When using Google Calendar™ you may have one event on multiple calendars. For instance on your work and personal calendar, on your work calendar and your team's shared calendar, or on many co-work's calendars. These can clutter up your calendar and make it hard to read. This extension merges all those separate events into one event, and gives it strips with all the individual calendars' colors. Report bugs here: https://github.com/imightbeamy/gcal-multical-event-merge/issues Code on github: https://github.com/imightbeamy/gcal-multical-event-merge Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Основная информация о расширении
Название | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
Официальный URL | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
Описание | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Размер файла | 147 KB |
Количество установок | 73,505 |
Текущая Версия | 2.2.1 |
Последнее Обновление | 2019-07-01 |
Дата публикации | 2019-07-01 |
Рейтинг | 4.21/5 Всего 210 оценок |
Разработчик | Amy Ciavolino |
Тип оплаты | free |
Официальный сайт расширения | https://amy.tech/ |
URL страницы помощи | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
Поддерживаемые языки | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.2.1", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "chroma.min.js", "events.user.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Toggle" }, "icons": { "48": "icon.png" }, "content_security_policy": "default-src 'self'", "manifest_version": 2 } |