Hue: More Colors for Google Calendar
A Chrome extension designed to enhance and personalize your Google Calendar experience.
Apa itu Hue: More Colors for Google Calendar?
Hue: More Colors for Google Calendar adalah ekstensi Chrome yang dikembangkan oleh bryanhuangg, dan fitur utamanya adalah "A Chrome extension designed to enhance and personalize your Google Calendar experience.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Hue: More Colors for Google Calendar
Unduh file ekstensi Hue: More Colors for Google Calendar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Hue: More Colors for Google Calendar |
ID | gglmljnnfgfkajefpbgjaeobelpokhbn |
URL Resmi | https://chromewebstore.google.com/detail/hue-more-colors-for-googl/gglmljnnfgfkajefpbgjaeobelpokhbn |
Deskripsi | A Chrome extension designed to enhance and personalize your Google Calendar experience. |
Ukuran File | 205 KB |
Jumlah Instalasi | 566 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2024-02-15 |
Tanggal Publikasi | 2023-11-12 |
Penilaian | 3.38/5 Total 13 Penilaian |
Pengembang | bryanhuangg |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/bryanhuangg/gcal-hue/issues |
Bahasa yang Didukung | 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\/*" ] } ] } |