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 💯
Was ist Shade non-working hours for Google Calendar?
Shade non-working hours for Google Calendar ist eine Chrome-Erweiterung, die von Madeleine Smith Software entwickelt wurde, und ihr Hauptmerkmal ist "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯".
Erweiterungsscreenshots
Shade non-working hours for Google Calendar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Shade non-working hours for Google Calendar-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
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 💯 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hdlfamnpialfmlkddnmijnimciflhbjo |
| Offizielle URL | https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo |
| Beschreibung | Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯 |
| Dateigröße | 24.88 MB |
| Installationsanzahl | 2,214 |
| Aktuelle Version | 1.4.0 |
| Letztes Update | 2023-04-15 |
| Veröffentlichungsdatum | 2022-10-27 |
| Bewertung | 4.46/5 Insgesamt 13 Bewertungen |
| Entwickler | Madeleine Smith Software |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.madeleinesmith.uk/ |
| Hilfeseite URL | https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0 |
| Unterstützte Sprachen | 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"
}
} | |