Google Calendar Event Checker

Google Calendar Event Checker

Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Calendar Event Checker",
  "short_name": "gcal-checker",
  "version": "1.6.5",
  "manifest_version": 3,
  "description": "Mark events as completed or cancelled in Google Calendar with emojis or strikethroughs.",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "run_at": "document_idle",
      "js": [
        "sentry.7.100.1.bundle.min.js",
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}