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 💯
Что такое Shade non-working hours for Google Calendar?
Shade non-working hours for Google Calendar - это расширение Chrome, разработанное Madeleine Smith Software, и его основная функция - "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯".
Снимки экрана расширения
Скачать файл CRX расширения Shade non-working hours for Google Calendar
Скачайте файлы расширений Shade non-working hours for Google Calendar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 💯 Основная информация о расширении
| Название | |
| ID | hdlfamnpialfmlkddnmijnimciflhbjo |
| Официальный URL | https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo |
| Описание | Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯 |
| Размер файла | 24.88 MB |
| Количество установок | 2,214 |
| Текущая Версия | 1.4.0 |
| Последнее Обновление | 2023-04-15 |
| Дата публикации | 2022-10-27 |
| Рейтинг | 4.46/5 Всего 13 оценок |
| Разработчик | Madeleine Smith Software |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://www.madeleinesmith.uk/ |
| URL страницы помощи | https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0 |
| Поддерживаемые языки | 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"
}
} | |