Gondola - Meeting Assistant

Gondola - Meeting Assistant

Gondola - Meeting Assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gondola - Meeting Assistant",
  "version": "1.1.3",
  "description": "Gondola - Meeting Assistant",
  "action": {
    "default_title": "Open your meetings on Gondola"
  },
  "options_page": "settings/index.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "assets/logo16.png",
    "32": "assets/logo32.png",
    "48": "assets/logo48.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage",
    "tabGroups"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.demoflow.io/*",
        "https://app.demoflow-staging.io/*",
        "https://app.gondola.ai/*",
        "https://app.gondola-staging.ai/*",
        "https://lvh.me/*"
      ],
      "js": [
        "scripts/import-content-script.js"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.office365.com/calendar/*",
        "https://outlook.office.com/calendar/*"
      ],
      "js": [
        "scripts/import-calendar-script.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://lvh.me/*",
      "*://app.demoflow.io/*",
      "*://app.demoflow-staging.io/*",
      "*://app.gondola.ai/*",
      "*://app.gondola-staging.ai/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "scripts/content-script.js",
        "scripts/calendar-script.js"
      ],
      "matches": [
        "https://app.demoflow.io/*",
        "https://app.demoflow-staging.io/*",
        "https://app.gondola.ai/*",
        "https://app.gondola-staging.ai/*",
        "https://lvh.me/*",
        "https://calendar.google.com/*",
        "https://outlook.office365.com/*",
        "https://outlook.office.com/*",
        "<all_urls>"
      ]
    }
  ]
}