Hue: More Colors for Google Calendar
A Chrome extension designed to enhance and personalize your Google Calendar experience.
Hvad er Hue: More Colors for Google Calendar?
Hue: More Colors for Google Calendar er en Chrome-udvidelse udviklet af bryanhuangg, og dens hovedfunktion er "A Chrome extension designed to enhance and personalize your Google Calendar experience.".
Udvidelsesskærmbilleder
Download Hue: More Colors for Google Calendar-udvidelses-CRX-fil
Download Hue: More Colors for Google Calendar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Hue: More Colors for Google Calendar |
ID | gglmljnnfgfkajefpbgjaeobelpokhbn |
Officiel URL | https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn |
Beskrivelse | A Chrome extension designed to enhance and personalize your Google Calendar experience. |
Filstørrelse | 205 KB |
Antal Installationer | 566 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2024-02-15 |
Udgivelsesdato | 2023-11-12 |
Bedømmelse | 3.38/5 Samlet 13 Bedømmelser |
Udvikler | bryanhuangg |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/bryanhuangg/gcal-hue/issues |
Understøttede Sprog | 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\/*" ] } ] } |