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开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension designed to enhance and personalize your Google Calendar experience.”。
扩展截图
下载Hue: More Colors for Google Calendar扩展crx文件
下载Hue: More Colors for Google Calendar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } ] } |