Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Co to jest Google Calendar Gray Weekends?

Google Calendar Gray Weekends to rozszerzenie Chrome opracowane przez msteffen.developer, a jego główną funkcją jest „Turn weekend days light gray in Google Calendar”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Calendar Gray Weekends

Pobierz pliki rozszerzeń Google Calendar Gray Weekends 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

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
Oficjalny URL https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
Opis Turn weekend days light gray in Google Calendar
Rozmiar pliku 6.77 KB
Liczba instalacji 2,544
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2019-04-29
Data Publikacji 2019-04-29
Ocena 4.61/5 Łącznie 18 Oceny
Deweloper msteffen.developer
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/msteffen/gcal-gray-weekends
Obsługiwane Języki 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"
        }
    ]
}