Sessions

Sessions

Schedule or instantly start online meetings through the Sessions Browser extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sessions",
  "description": "Schedule or instantly start online meetings through the Sessions Browser extension.",
  "version": "1.0.1",
  "action": {
    "default_icon": {
      "16": "icon-16.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    },
    {
      "matches": [
        "https://app.sessions.us/*"
      ],
      "js": [
        "js/vendor.js",
        "js/presence.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "management",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}