Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Hvad er Google Calendar Gray Weekends?

Google Calendar Gray Weekends er en Chrome-udvidelse udviklet af msteffen.developer, og dens hovedfunktion er "Turn weekend days light gray in Google Calendar".

Udvidelsesskærmbilleder

screenshot

Download Google Calendar Gray Weekends-udvidelses-CRX-fil

Download Google Calendar Gray Weekends-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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)                    

Grundlæggende oplysninger om udvidelsen

Navn Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
Officiel URL https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
Beskrivelse Turn weekend days light gray in Google Calendar
Filstørrelse 6.77 KB
Antal Installationer 2,544
Nuværende Version 0.1.1
Senest Opdateret 2019-04-29
Udgivelsesdato 2019-04-29
Bedømmelse 4.61/5 Samlet 18 Bedømmelser
Udvikler msteffen.developer
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/msteffen/gcal-gray-weekends
Understøttede Sprog 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"
        }
    ]
}