Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Wat is Event Merge for Google Calendar™?
Event Merge for Google Calendar™ is een Chrome-extensie ontwikkeld door Amy Ciavolino, en de belangrijkste functie is "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Extensie Screenshots
Download het CRX-bestand van de extensie Event Merge for Google Calendar™
Download Event Merge for Google Calendar™-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
Officiële URL | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
Beschrijving | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Bestandsgrootte | 147 KB |
Aantal Installaties | 73,505 |
Huidige Versie | 2.2.1 |
Laatst Bijgewerkt | 2019-07-01 |
Publicatiedatum | 2019-07-01 |
Beoordeling | 4.21/5 Totaal 210 Beoordelingen |
Ontwikkelaar | Amy Ciavolino |
Betalingswijze | free |
Extensiewebsite | https://amy.tech/ |
Help Pagina-URL | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
Ondersteunde Talen | 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 } |