Event Merge for Google Calendar™

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

Co to jest Event Merge for Google Calendar™?

Event Merge for Google Calendar™ to rozszerzenie Chrome opracowane przez Amy Ciavolino, a jego główną funkcją jest „Chrome extension that visually merges the same event on multiple Google Calendars into one event.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Event Merge for Google Calendar™

Pobierz pliki rozszerzeń Event Merge for Google Calendar™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
Oficjalny URL https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
Opis Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Rozmiar pliku 147 KB
Liczba instalacji 73,505
Aktualna Wersja 2.2.1
Ostatnia Aktualizacja 2019-07-01
Data Publikacji 2019-07-01
Ocena 4.21/5 Łącznie 210 Oceny
Deweloper Amy Ciavolino
Typ Płatności free
Strona Rozszerzenia https://amy.tech/
Adres URL Strony Pomocy https://github.com/imightbeamy/gcal-multical-event-merge/issues
Obsługiwane Języki 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
}