Gather Meetings

Gather Meetings

Schedule meetings in Gather directly from Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gather Meetings",
  "description": "Schedule meetings in Gather directly from Google Calendar",
  "version": "0.0.89",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.gather.town/*"
    ]
  },
  "action": {
    "default_title": "Gather Calendar Extension",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "host_permissions": [
    "https://api.staging.gather.town/",
    "https://api.gather.town/"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "run_at": "document_end"
    }
  ]
}