Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
What is Google Calendar Gray Weekends?
Google Calendar Gray Weekends is a Chrome extension developed by msteffen.developer, and its main feature is "Turn weekend days light gray in Google Calendar".
Extension Screenshots
Download Google Calendar Gray Weekends Extension CRX File
Download Google Calendar Gray Weekends extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Google Calendar Gray Weekends |
ID | anbpifeeedchofljolkgmleojmelihom |
Official URL | https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom |
Description | Turn weekend days light gray in Google Calendar |
File Size | 6.77 KB |
Installation Count | 2,544 |
Current Version | 0.1.1 |
Last Updated | 2019-04-29 |
Publish Date | 2019-04-29 |
Rating | 4.61/5 Total 18 Ratings |
Developer | msteffen.developer |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/msteffen/gcal-gray-weekends |
Supported Languages | 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" } ] } |