Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
Google Calendar Gray Weekendsคืออะไร?
Google Calendar Gray Weekends เป็นส่วนขยายของ Chrome ที่พัฒนาโดย msteffen.developer และคุณลักษณะหลักของมันคือ "Turn weekend days light gray in Google Calendar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Calendar Gray Weekends
ดาวน์โหลดไฟล์ส่วนขยาย Google Calendar Gray Weekends ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Sets the background color of weekend days to light gray in Google calendar Very simple, and currently US/English only (it has "Saturday" and "Sunday" hard-coded). Source is at https://github.com/msteffen/gcal-gray-weekends (you can report bugs as well)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Calendar Gray Weekends |
ID | anbpifeeedchofljolkgmleojmelihom |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom |
คำอธิบาย | Turn weekend days light gray in Google Calendar |
ขนาดไฟล์ | 6.77 KB |
จำนวนการติดตั้ง | 2,544 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2019-04-29 |
วันที่เผยแพร่ | 2019-04-29 |
คะแนน | 4.61/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | msteffen.developer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/msteffen/gcal-gray-weekends |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Calendar Gray Weekends", "version": "0.1.1", "description": "Turn weekend days light gray in Google Calendar", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |