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™คืออะไร?

Event Merge for Google Calendar™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Amy Ciavolino และคุณลักษณะหลักของมันคือ "Chrome extension that visually merges the same event on multiple Google Calendars into one event."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Event Merge for Google Calendar™

ดาวน์โหลดไฟล์ส่วนขยาย Event Merge for Google Calendar™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
คำอธิบาย Chrome extension that visually merges the same event on multiple Google Calendars into one event.
ขนาดไฟล์ 147 KB
จำนวนการติดตั้ง 73,505
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2019-07-01
วันที่เผยแพร่ 2019-07-01
คะแนน 4.21/5 รวมทั้งหมด 210 คะแนน
ผู้พัฒนา Amy Ciavolino
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://amy.tech/
URL หน้าช่วยเหลือ https://github.com/imightbeamy/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.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
}