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은(는) Madeleine Smith Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 💯
확장 프로그램 기본 정보
이름 | Shade non-working hours for Google Calendar |
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" } } |