LanSchool Air Chrome Extension

LanSchool Air Chrome Extension

Helps your teacher maintain a great learning environment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_packageName__",
  "version": "2.25.0.17802",
  "description": "__MSG_plugindescription__",
  "default_locale": "en",
  "icons": {
    "16": "/icon16.png",
    "48": "/icon48.png",
    "128": "/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/pip.js"
      ]
    }
  ],
  "action": {
    "default_icon": "/icon16.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webNavigation",
    "webRequest",
    "scripting",
    "storage",
    "management"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "offline_enabled": true,
  "incognito": "spanning",
  "commands": {
    "check-state": {
      "suggested_key": {
        "default": "Alt+Shift+Home",
        "mac": "Alt+Shift+Home",
        "windows": "Alt+Shift+Q"
      },
      "description": "Send a 'check-state' event"
    }
  }
}