Event Merge for Google Calendar™

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

Co je Event Merge for Google Calendar™?

Event Merge for Google Calendar™ je rozšíření Chrome vyvinuté Amy Ciavolino, a jeho hlavní funkcí je „Chrome extension that visually merges the same event on multiple Google Calendars into one event.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Event Merge for Google Calendar™

Stáhněte si soubory rozšíření Event Merge for Google Calendar™ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
Oficiální URL https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
Popis Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Velikost souboru 147 KB
Počet instalací 73,505
Aktuální Verze 2.2.1
Poslední Aktualizace 2019-07-01
Datum Vydání 2019-07-01
Hodnocení 4.21/5 Celkem 210 Hodnocení
Vývojář Amy Ciavolino
Typ Platby free
Webové stránky Rozšíření https://amy.tech/
URL Stránky Nápovědy https://github.com/imightbeamy/gcal-multical-event-merge/issues
Podporované Jazyky 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
}