Cal Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Cal Merge for Google Calendar™란 무엇입니까?
Cal Merge for Google Calendar™은(는) hcawnwebdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that visually merges the same event on multiple Google Calendars into one event."입니다.
확장 프로그램 스크린샷
Cal Merge for Google Calendar™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Forked from https://github.com/imightbeamy/gcal-multical-event-merge and updated for clearer legibility, better accessibility and modern requirements of the Chrome browser. Chrome extension that visually merges the same event on multiple Google Calendars into one event. When using Google Calendar™ you may have one event on multiple calendars. For instance on your work and personal calendar, on your work calendar and your team's shared calendar, or on many co-work's calendars. These can clutter up your calendar and make it hard to read. This extension merges all those separate events into one event, and gives it strips with all the individual calendars' colours. Report bugs here: https://github.com/HCAWN/gcal-multical-event-merge Usage: Install and reload Gmail page, click extension icon to toggle on or off. Code on GitHub: https://github.com/HCAWN/gcal-multical-event-merge Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
확장 프로그램 기본 정보
이름 | Cal Merge for Google Calendar™ |
ID | dchpdbljalbfnelbfbgncfidhjoibkah |
공식 URL | https://chromewebstore.google.com/detail/cal-merge-for-google-cale/dchpdbljalbfnelbfbgncfidhjoibkah |
설명 | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
파일 크기 | 715 KB |
설치 횟수 | 805 |
현재 버전 | 2.3.6 |
최근 업데이트 | 2023-11-14 |
출시 날짜 | 2022-08-11 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | hcawnwebdev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/HCAWN/gcal-multical-event-merge |
도움말 페이지 URL | https://github.com/HCAWN/gcal-multical-event-merge/issues |
지원되는 언어 | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.3.6", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "chroma.min.js", "events.user.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*" ], "action": { "default_title": "Toggle Cal Merge", "default_popup": "index.html" }, "icons": { "48": "icon.png" }, "content_security_policy": { "default-src": "self" }, "manifest_version": 3 } |