Examine source code of Event Merge for Google Calendar™ (MV3)

Inspect and view changes in Event Merge for Google Calendar™ (MV3) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.0.0",
  "manifest_version": 3,
  "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/calendar/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Toggle",
    "default_icon": "icon.png"
  },
  "icons": {
    "48": "icon.png"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'"
  }
}