Gradient Merge for Google Calendar™ Events
Take your duplicate Google Calendar events and merge them into one event.
Что такое Gradient Merge for Google Calendar™ Events?
Gradient Merge for Google Calendar™ Events - это расширение Chrome, разработанное kgrjng, и его основная функция - "Take your duplicate Google Calendar events and merge them into one event.".
Снимки экрана расширения
Скачать файл CRX расширения Gradient Merge for Google Calendar™ Events
Скачайте файлы расширений Gradient Merge for Google Calendar™ Events в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Chrome extension also uses the user defined colors of each calendar to create a beautiful gradient for each event. After installed, click on the plugin to activate then refresh Google Calendar to see your new cleaned up Google Calendar. Modified from: https://chrome.google.com/webstore/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep Repo at: https://github.com/karjna/gradient-gcal-event-merge
Основная информация о расширении
Название | Gradient Merge for Google Calendar™ Events |
ID | jcgbfnkjigkdllodnaecmdipcojhopfc |
Официальный URL | https://chromewebstore.google.com/detail/gradient-merge-for-google/jcgbfnkjigkdllodnaecmdipcojhopfc |
Описание | Take your duplicate Google Calendar events and merge them into one event. |
Размер файла | 317 KB |
Количество установок | 5,101 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2018-10-10 |
Дата публикации | 2018-10-09 |
Рейтинг | 3.90/5 Всего 21 оценок |
Разработчик | kgrjng |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/karjna/gradient-gcal-event-merge |
Поддерживаемые языки | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "Gradient Merge", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.0.1", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "events.user.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Toggle" }, "icons": { "48": "icon.png" }, "manifest_version": 2 } |