Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Was ist Google Calendar Gray Weekends?

Google Calendar Gray Weekends ist eine Chrome-Erweiterung, die von msteffen.developer entwickelt wurde, und ihr Hauptmerkmal ist "Turn weekend days light gray in Google Calendar".

Erweiterungsscreenshots

screenshot

Google Calendar Gray Weekends-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Calendar Gray Weekends-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Sets the background color of weekend days to light gray in Google calendar

Very simple, and currently US/English only (it has "Saturday" and "Sunday" hard-coded). Source is at https://github.com/msteffen/gcal-gray-weekends (you can report bugs as well)                    

Grundlegende Informationen zur Erweiterung

Name Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
Offizielle URL https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
Beschreibung Turn weekend days light gray in Google Calendar
Dateigröße 6.77 KB
Installationsanzahl 2,544
Aktuelle Version 0.1.1
Letztes Update 2019-04-29
Veröffentlichungsdatum 2019-04-29
Bewertung 4.61/5 Insgesamt 18 Bewertungen
Entwickler msteffen.developer
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/msteffen/gcal-gray-weekends
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Calendar Gray Weekends",
    "version": "0.1.1",
    "description": "Turn weekend days light gray in Google Calendar",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}