Meetingflow calendar extension

Meetingflow calendar extension

Meetingflow is a product to help teams with the best practices for managing customer meetings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meetingflow calendar extension",
  "description": "Meetingflow is a product to help teams with the best practices for managing customer meetings.",
  "version": "1.0.3",
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "inject_gcal.js"
      ],
      "run_at": "document_end",
      "css": [
        "style_gcal.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "homepage_url": "https://app.meetingflow.com/",
  "action": {
    "default_title": "Meetingflow options",
    "default_icon": "128.png",
    "default_popup": "./popup/popup.html"
  },
  "manifest_version": 3
}