Event Merge for Google Calendar™

Event Merge for Google Calendar™

Chrome extension that visually merges the same event on multiple Google Calendars into one event.

Merlin
Additional files are visible only to premium users

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
}