Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Event Merge for Google Calendar™ là gì?
Event Merge for Google Calendar™ là một tiện ích mở rộng Chrome được phát triển bởi Amy Ciavolino, và tính năng chính của nó là "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Event Merge for Google Calendar™
Tải xuống các tệp mở rộng Event Merge for Google Calendar™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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' colors. Report bugs here: https://github.com/imightbeamy/gcal-multical-event-merge/issues Code on github: https://github.com/imightbeamy/gcal-multical-event-merge Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
URL Chính Thức | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
Mô tả | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
Kích Thước Tệp | 147 KB |
Số Lần Cài Đặt | 73,505 |
Phiên Bản Hiện Tại | 2.2.1 |
Cập Nhật Lần Cuối | 2019-07-01 |
Ngày Phát Hành | 2019-07-01 |
Đánh Giá | 4.21/5 Tổng số 210 Đánh Giá |
Nhà Phát Triển | Amy Ciavolino |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://amy.tech/ |
URL Trang Trợ Giúp | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
Ngôn Ngữ Được Hỗ Trợ | 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.2.1", "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": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Toggle" }, "icons": { "48": "icon.png" }, "content_security_policy": "default-src 'self'", "manifest_version": 2 } |