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 extension that visually merges the same event on multiple Google Calendars into one event."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cal Merge for Google Calendar™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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™ 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
}