Shade non-working hours for Google Calendar

Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯

Co to jest Shade non-working hours for Google Calendar?

Shade non-working hours for Google Calendar to rozszerzenie Chrome opracowane przez Madeleine Smith Software, a jego główną funkcją jest „Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Shade non-working hours for Google Calendar

Pobierz pliki rozszerzeń Shade non-working hours 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

                        About:
• This extension allows you to 'grey-out' your non-working hours in the day, week and '4 day' views of Google Calendar. 
• Use it to quickly see which hours of your day are blocked off for work and non-work time.

Usage instructions:
• Click into the extension to set your personal working hours 👩‍💻

Disclaimer:
• I'm in no way affiliated with Google or the Google Calendar brand 💯                    

Podstawowe informacje o rozszerzeniu

Nazwa Shade non-working hours for Google Calendar Shade non-working hours for Google Calendar
ID hdlfamnpialfmlkddnmijnimciflhbjo
Oficjalny URL https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo
Opis Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯
Rozmiar pliku 24.88 MB
Liczba instalacji 2,214
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2023-04-15
Data Publikacji 2022-10-27
Ocena 4.46/5 Łącznie 13 Oceny
Deweloper Madeleine Smith Software
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.madeleinesmith.uk/
Adres URL Strony Pomocy https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shade non-working hours for Google Calendar",
    "action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "version": "1.4.0",
    "description": "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock \ud83d\udcaf",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}