Flowcaster Google Integration

Flowcaster Google Integration

Integrates Flowcaster meeting and review session with Google apps such as Calendar, Gmail and Contacts

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flowcaster Google Integration",
  "description": "Integrates Flowcaster meeting and review session with Google apps such as Calendar, Gmail and Contacts",
  "version": "1.0.6",
  "manifest_version": 3,
  "author": "Drastic Technologies Ltd",
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "js": [
        "content-scripts/lib/jquery-3.6.0.min.js",
        "content-scripts/main.js",
        "content-scripts/utils.js",
        "content-scripts/calendarModule.js",
        "content-scripts/gmailModule.js",
        "content-scripts/contactsModule.js"
      ],
      "css": [
        "content-scripts/style.css",
        "content-scripts/flowcaster-web-styles.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "flowcaster-icon.png",
    "32": "flowcaster-icon.png",
    "48": "flowcaster-icon.png",
    "128": "flowcaster-icon.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "flowcaster-icon.png",
      "32": "flowcaster-icon.png",
      "48": "flowcaster-icon.png",
      "128": "flowcaster-icon.png"
    }
  },
  "background": {
    "service_worker": "content-scripts/background_script.js"
  },
  "host_permissions": [
    "*://*.flowcaster.live/",
    "https://*.google.com/*"
  ],
  "permissions": [
    "scripting",
    "webNavigation"
  ]
}