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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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
}