Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
Cos'è Google Calendar Gray Weekends?
Google Calendar Gray Weekends è un'estensione di Chrome sviluppata da msteffen.developer, e la sua funzione principale è "Turn weekend days light gray in Google Calendar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Calendar Gray Weekends
Scarica i file di estensione Google Calendar Gray Weekends in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Google Calendar Gray Weekends |
ID | anbpifeeedchofljolkgmleojmelihom |
URL Ufficiale | https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom |
Descrizione | Turn weekend days light gray in Google Calendar |
Dimensione del File | 6.77 KB |
Conteggio Installazioni | 2,544 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2019-04-29 |
Data di Pubblicazione | 2019-04-29 |
Valutazione | 4.61/5 Totale 18 Valutazioni |
Sviluppatore | msteffen.developer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/msteffen/gcal-gray-weekends |
Lingue Supportate | 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" } ] } |