Google Calendar Gray Weekends
Turn weekend days light gray in Google Calendar
Google Calendar Gray Weekends क्या है?
Google Calendar Gray Weekends msteffen.developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn weekend days light gray in Google Calendar"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Calendar Gray Weekends एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |