Gloww for Google Calendar

Gloww for Google Calendar

Schedule interactive Gloww video meetings right from your 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,
  "author": {
    "email": "[email protected]"
  },
  "name": "Gloww for Google Calendar",
  "description": "Schedule interactive Gloww video meetings right from your Google Calendar.",
  "homepage_url": "https://gloww.com",
  "version": "1.0.2",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAh4b1mB3bPH+roRdnquBysKf8kU3FdObx7k1Pw3eea+VQxEQuN0VCUzLVjwLsr1mgvELICEYxdRF0NXS5gf2SUMme3iLoK6xSdcn6Ezx5HJijeAI9weMPrUkgsHJ12xMZOVmblm/vjVmnw2zHnZq+fi7SCpK65ax6qAgRw+vnyQdOs0Xk/V+E9PGrF7kP0aOT2EUEj1Q2fgDdzcdhHdQFw+i2qRHAYI+ZTErDu/7ZDPTD9B3HilbS8mzthJXzMJyAkjR7QziIMMdx3IXa2r2HMxrXC87/lxQrPU9vFAYW04a/4sgVyWY6/ycn5aOwghIYZ7uoEDf6NrEf0KD+vxTHgQIDAQAB",
  "icons": {
    "16": "assets/images/gloww_16x16.png",
    "48": "assets/images/gloww_48x48.png",
    "128": "assets/images/gloww_128x128.png"
  },
  "background": {
    "service_worker": "pages/background/background.js"
  },
  "permissions": [
    "storage"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "*://app-dev.gloww.com/*",
      "*://app-playground.gloww.com/*",
      "*://app-stg.gloww.com/*",
      "*://app.gloww.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3000/*",
        "https://*.gloww.com/*",
        "https://calendar.google.com/calendar/*",
        "https://outlook.live.com/owa/*"
      ],
      "js": [
        "pages/utils/utils.js",
        "pages/content/pageUtils.js",
        "pages/content/renderers/pageRenderer.js",
        "pages/content/renderers/googleCalendarRenderer.js",
        "pages/content/pageHandler.js",
        "pages/content/content.js"
      ],
      "css": [
        "assets/css/all.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://outlook.live.com/*"
      ],
      "resources": [
        "assets/images/camera_gloww.png",
        "assets/images/disabled_camera.png"
      ]
    }
  ],
  "action": {
    "default_icon": "assets/images/gloww_16x16.png"
  },
  "default_locale": "en"
}