Glider Proctoring

Glider Proctoring

This chrome extension allows you to share full screen of your computer privately and securely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Glider Proctoring",
  "author": "GLIDER",
  "version": "4.0.1",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "description": "This chrome extension allows you to share full screen of your computer privately and securely.",
  "homepage_url": "http://glider.ai/",
  "background": {
    "service_worker": "background-script.js"
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "http://local.glider.ai:3000/*",
      "https://*.glider.ai/*",
      "https://*.gliderapp.com/*"
    ]
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "system.display",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>",
    "http://localhost:3000/*",
    "https://*.glider.ai/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}