Event Merge for Google Calendar™

Chrome extension that visually merges the same event on multiple Google Calendars into one event.

Was ist Event Merge for Google Calendar™?

Event Merge for Google Calendar™ ist eine Chrome-Erweiterung, die von Amy Ciavolino entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Event Merge for Google Calendar™-Erweiterungs-CRX-Datei herunterladen

Laden Sie Event Merge for Google Calendar™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
Offizielle URL https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
Beschreibung Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Dateigröße 147 KB
Installationsanzahl 73,505
Aktuelle Version 2.2.1
Letztes Update 2019-07-01
Veröffentlichungsdatum 2019-07-01
Bewertung 4.21/5 Insgesamt 210 Bewertungen
Entwickler Amy Ciavolino
Zahlungsart free
Erweiterungswebsite https://amy.tech/
Hilfeseite URL https://github.com/imightbeamy/gcal-multical-event-merge/issues
Unterstützte Sprachen 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
}