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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } ] } |