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
}