Cal Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Τι είναι το Cal Merge for Google Calendar™;
Το Cal Merge for Google Calendar™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hcawnwebdev, και η κύρια λειτουργία του είναι "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Cal Merge for Google Calendar™
Λήψη αρχείων επέκτασης Cal Merge for Google Calendar™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Forked from https://github.com/imightbeamy/gcal-multical-event-merge and updated for clearer legibility, better accessibility and modern requirements of the Chrome browser. Chrome extension that visually merges the same event on multiple Google Calendars into one event. 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' colours. Report bugs here: https://github.com/HCAWN/gcal-multical-event-merge Usage: Install and reload Gmail page, click extension icon to toggle on or off. Code on GitHub: https://github.com/HCAWN/gcal-multical-event-merge Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Cal Merge for Google Calendar™ |
ID | dchpdbljalbfnelbfbgncfidhjoibkah |
Επίσημο URL | https://chromewebstore.google.com/detail/cal-merge-for-google-cale/dchpdbljalbfnelbfbgncfidhjoibkah |
Περιγραφή | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Μέγεθος Αρχείου | 715 KB |
Αριθμός Εγκαταστάσεων | 805 |
Τρέχουσα Έκδοση | 2.3.6 |
Τελευταία Ενημέρωση | 2023-11-14 |
Ημερομηνία Δημοσίευσης | 2022-08-11 |
Αξιολόγηση | 4.43/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | hcawnwebdev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/HCAWN/gcal-multical-event-merge |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/HCAWN/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.3.6", "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": [ "storage" ], "host_permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*" ], "action": { "default_title": "Toggle Cal Merge", "default_popup": "index.html" }, "icons": { "48": "icon.png" }, "content_security_policy": { "default-src": "self" }, "manifest_version": 3 } |