Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
Vad är Google Calendar Gray Weekends?
Google Calendar Gray Weekends är en Chrome-tillägg utvecklad av msteffen.developer, och dess huvudfunktion är "Turn weekend days light gray in Google Calendar".
Tilläggsskärmbilder
Ladda ner Google Calendar Gray Weekends-förlängningens CRX-fil
Ladda ner Google Calendar Gray Weekends-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | Google Calendar Gray Weekends |
ID | anbpifeeedchofljolkgmleojmelihom |
Officiell webbadress | https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom |
Beskrivning | Turn weekend days light gray in Google Calendar |
Filstorlek | 6.77 KB |
Antal Installationer | 2,544 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2019-04-29 |
Publiceringsdatum | 2019-04-29 |
Betyg | 4.61/5 Totalt 18 Betyg |
Utvecklare | msteffen.developer |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/msteffen/gcal-gray-weekends |
Stödda Språk | 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" } ] } |