Cost Of Meeting for Google Calendar

Cost Of Meeting for Google Calendar

Easily see the average cost of meetings you schedule on Google Calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Easily see the average cost of meetings you schedule on Google Calendar.",
  "manifest_version": 3,
  "name": "Cost Of Meeting for Google Calendar",
  "author": "Equalicert",
  "version": "1.0.1",
  "homepage_url": "https://equaltime.io",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "identity",
    "identity.email"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "content.js",
        "sentry.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_start"
    }
  ]
}