Meeting Cost Calculator by Ramp

Meeting Cost Calculator by Ramp

Know the cost of every meeting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Meeting Cost Calculator by Ramp",
  "description": "Know the cost of every meeting",
  "version": "1.0.2",
  "action": {
    "default_icon": "ramp.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "scripts/monitor.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://calendar.google.com/*",
    "https://api.ramp.com/v1/*"
  ]
}