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 💯
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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" } } |