Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Apa itu Event Merge for Google Calendar™?
Event Merge for Google Calendar™ adalah ekstensi Chrome yang dikembangkan oleh Amy Ciavolino, dan fitur utamanya adalah "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Event Merge for Google Calendar™
Unduh file ekstensi Event Merge for Google Calendar™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
URL Resmi | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
Deskripsi | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Ukuran File | 147 KB |
Jumlah Instalasi | 73,505 |
Versi Saat Ini | 2.2.1 |
Terakhir Diperbarui | 2019-07-01 |
Tanggal Publikasi | 2019-07-01 |
Penilaian | 4.21/5 Total 210 Penilaian |
Pengembang | Amy Ciavolino |
Tipe Pembayaran | free |
Situs Ekstensi | https://amy.tech/ |
URL Halaman Bantuan | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
Bahasa yang Didukung | 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 } |