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™はAmy Ciavolinoによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that visually merges the same event on multiple Google Calendars into one event.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Event Merge for Google Calendar™拡張機能のCRXファイルをダウンロード

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
}