Event Merge for Google Calendar™

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

What is Event Merge for Google Calendar™?

Event Merge for Google Calendar™ is a Chrome extension developed by Amy Ciavolino, and its main feature is "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Event Merge for Google Calendar™ Extension CRX File

Download Event Merge for Google Calendar™ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
Official URL https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
Description Chrome extension that visually merges the same event on multiple Google Calendars into one event.
File Size 147 KB
Installation Count 73,505
Current Version 2.2.1
Last Updated 2019-07-01
Publish Date 2019-07-01
Rating 4.21/5 Total 210 Ratings
Developer Amy Ciavolino
Payment Type free
Extension Website https://amy.tech/
Help Page URL https://github.com/imightbeamy/gcal-multical-event-merge/issues
Supported Languages 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
}