Hue: More Colors for Google Calendar
A Chrome extension designed to enhance and personalize your Google Calendar experience.
Hue: More Colors for Google Calendar क्या है?
Hue: More Colors for Google Calendar bryanhuangg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension designed to enhance and personalize your Google Calendar experience."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hue: More Colors for Google Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Currently allows you to have full control of the colors on your Google Calendar events. Add new colors to your palette in the extensions popup menu to see more color options in your calendar! More features to come. Patch Notes: Version 1.0.2 (2/2/2024) Fixed issue where event colors do not change properly due to google calendar update.
एक्सटेंशन की मूल जानकारी
नाम | Hue: More Colors for Google Calendar |
ID | gglmljnnfgfkajefpbgjaeobelpokhbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn |
विवरण | A Chrome extension designed to enhance and personalize your Google Calendar experience. |
फ़ाइल का आकार | 205 KB |
स्थापना संख्या | 566 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2024-02-15 |
प्रकाशन तिथि | 2023-11-12 |
रेटिंग | 3.38/5 कुल 13 रेटिंग्स |
डेवलपर | bryanhuangg |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/bryanhuangg/gcal-hue/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hue: More Colors for Google Calendar", "version": "1.0.2", "description": "A Chrome extension designed to enhance and personalize your Google Calendar experience.", "host_permissions": [ "https:\/\/calendar.google.com\/*", "http:\/\/calendar.google.com\/*" ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } }, "content_scripts": [ { "js": [ "colour.js", "selector.js" ], "matches": [ "https:\/\/calendar.google.com\/*", "http:\/\/calendar.google.com\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "icon.png", "trash16.png" ], "matches": [ "https:\/\/calendar.google.com\/*", "http:\/\/calendar.google.com\/*" ] } ] } |