Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Cos'è Event Merge for Google Calendar™?
Event Merge for Google Calendar™ è un'estensione di Chrome sviluppata da Amy Ciavolino, e la sua funzione principale è "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Event Merge for Google Calendar™
Scarica i file di estensione Event Merge for Google Calendar™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
URL Ufficiale | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
Descrizione | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Dimensione del File | 147 KB |
Conteggio Installazioni | 73,505 |
Versione Corrente | 2.2.1 |
Ultimo Aggiornamento | 2019-07-01 |
Data di Pubblicazione | 2019-07-01 |
Valutazione | 4.21/5 Totale 210 Valutazioni |
Sviluppatore | Amy Ciavolino |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://amy.tech/ |
URL della Pagina di Aiuto | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
Lingue Supportate | 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 } |