Rainbow.surf for Google Calendar

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

Cos'è Rainbow.surf for Google Calendar?

Rainbow.surf for Google Calendar è un'estensione di Chrome sviluppata da https://coedit.email, e la sua funzione principale è "Merges duplicate Google Calendar events into one rainbow and colors the weekends.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Rainbow.surf for Google Calendar

Scarica i file di estensione Rainbow.surf for Google Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Rainbow.surf for Google Calendar Rainbow.surf for Google Calendar
ID bdamkdibjdpgnpfpkbelkdngdcbbaeog
URL Ufficiale https://chromewebstore.google.com/detail/rainbowsurf-for-google-ca/bdamkdibjdpgnpfpkbelkdngdcbbaeog
Descrizione Merges duplicate Google Calendar events into one rainbow and colors the weekends.
Dimensione del File 2.53 MB
Conteggio Installazioni 745
Versione Corrente 2.1.1
Ultimo Aggiornamento 2022-02-12
Data di Pubblicazione 2021-09-11
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore https://coedit.email
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://rainbow.surf/
URL della Pagina di Aiuto https://github.com/coedit/gcal-rainbow-surf/discussions/categories/q-a
URL della Pagina della Politica sulla Privacy https://coedit.email/privacy
Lingue Supportate 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
}