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 💯
Wat is Shade non-working hours for Google Calendar?
Shade non-working hours for Google Calendar is een Chrome-extensie ontwikkeld door Madeleine Smith Software, en de belangrijkste functie is "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯".
Extensie Screenshots
Download het CRX-bestand van de extensie Shade non-working hours for Google Calendar
Download Shade non-working hours for Google Calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 💯
Basisinformatie over de Extensie
Naam | Shade non-working hours for Google Calendar |
ID | hdlfamnpialfmlkddnmijnimciflhbjo |
Officiële URL | https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo |
Beschrijving | Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯 |
Bestandsgrootte | 24.88 MB |
Aantal Installaties | 2,214 |
Huidige Versie | 1.4.0 |
Laatst Bijgewerkt | 2023-04-15 |
Publicatiedatum | 2022-10-27 |
Beoordeling | 4.46/5 Totaal 13 Beoordelingen |
Ontwikkelaar | Madeleine Smith Software |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.madeleinesmith.uk/ |
Help Pagina-URL | https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0 |
Ondersteunde Talen | 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" } } |