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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |