Rainbow.surf for Google Calendar

Merges duplicate Google Calendar events into one rainbow and colors the weekends.

Co to jest Rainbow.surf for Google Calendar?

Rainbow.surf for Google Calendar to rozszerzenie Chrome opracowane przez https://coedit.email, a jego główną funkcją jest „Merges duplicate Google Calendar events into one rainbow and colors the weekends.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Rainbow.surf for Google Calendar

Pobierz pliki rozszerzeń Rainbow.surf 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

                        Free Chrome extension to cut the clutter when families or teams  use calendar sharing and the same event appears in the same slot.

📅📅 → 📅  merges duplicate Google Calendar events into one rainbow of the individual calendar colors 
🟦  makes weekends great again - with cool blue background colors
🗓  new event box & mini calendar views also get cool blue weekends
💻  does not modify events (only works in your browser)
🚫  doesn't show ads and doesn't send user's data anywhere
🌼  open source: https://github.com/coedit/gcal-rainbow-surf


Like it? Please rate it!
Do you have ideas for new calendar enhancements or see an issue? Start a discussion: https://github.com/coedit/gcal-rainbow-surf/discussions/categories/ideas

Passion project – curated by @ezdub – dedicated to @illstylist 
With code by @imightbeAmy @karjna @rubenpoppe @msteffen @ezdub  
art copyright ©2021 @ezdub                    

Podstawowe informacje o rozszerzeniu

Nazwa Rainbow.surf for Google Calendar Rainbow.surf for Google Calendar
ID bdamkdibjdpgnpfpkbelkdngdcbbaeog
Oficjalny URL https://chromewebstore.google.com/detail/rainbowsurf-for-google-ca/bdamkdibjdpgnpfpkbelkdngdcbbaeog
Opis Merges duplicate Google Calendar events into one rainbow and colors the weekends.
Rozmiar pliku 2.53 MB
Liczba instalacji 745
Aktualna Wersja 2.1.1
Ostatnia Aktualizacja 2022-02-12
Data Publikacji 2021-09-11
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper https://coedit.email
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://rainbow.surf/
Adres URL Strony Pomocy https://github.com/coedit/gcal-rainbow-surf/discussions/categories/q-a
Adres URL Strony Polityki Prywatności https://coedit.email/privacy
Obsługiwane Języki en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "rainbow.surf",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2.1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "events.user.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/calendar.google.com\/*"
    ],
    "icons": {
        "128": "images\/Rainbow.surf-icon-128.png",
        "256": "images\/Rainbow.surf-icon-256.png",
        "32": "images\/Rainbow.surf-icon-32.png",
        "48": "images\/Rainbow.surf-icon-48.png",
        "64": "images\/Rainbow.surf-icon-64.png"
    },
    "content_security_policy": "default-src 'self'",
    "manifest_version": 2
}