Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
Qu'est-ce que Google Calendar Gray Weekends ?
Google Calendar Gray Weekends est une extension Chrome développée par msteffen.developer, et sa fonction principale est "Turn weekend days light gray in Google Calendar".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Calendar Gray Weekends
Téléchargez les fichiers d'extension Google Calendar Gray Weekends au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | Google Calendar Gray Weekends |
ID | anbpifeeedchofljolkgmleojmelihom |
URL Officiel | https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom |
Description | Turn weekend days light gray in Google Calendar |
Taille du Fichier | 6.77 KB |
Nombre d'Installations | 2,544 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2019-04-29 |
Date de Publication | 2019-04-29 |
Évaluation | 4.61/5 Total 18 Évaluations |
Développeur | msteffen.developer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/msteffen/gcal-gray-weekends |
Langues Prises en Charge | 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" } ] } |