Connect for Chrome - Education

Connect for Chrome - Education

Connect for Chrome - Education provides visibility into student internet access in the classroom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Connect for Chrome - Education",
  "version": "2.4.1",
  "manifest_version": 2,
  "description": "Connect for Chrome - Education provides visibility into student internet access in the classroom.",
  "browser_action": {
    "default_icon": "popup/icon.png",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "192": "/background/assets/imgs/icon-192.png",
    "512": "/background/assets/imgs/icon-512.png"
  },
  "host_permissions": [
    "*://*.linewize.net"
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "identity",
    "storage",
    "identity.email",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage",
    "idle",
    "cookies",
    "enterprise.deviceAttributes"
  ],
  "background": {
    "scripts": [
      "background/background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    "/background/assets/imgs/Close.svg",
    "/background/assets/pages/default-blocked.html",
    "/chat/assets/imgs/bubble.svg",
    "/chat/assets/imgs/pendo.png",
    "/chat/assets/imgs/beta.svg",
    "/chat/assets/imgs/closePendo.svg"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "background/content.bundle.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "oauth2": {
    "client_id": "474789183549-2jbl8gn6gik3pho11dlcdcllb22ab4vm.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}