NetRef: Classroom Management

Manage. Monitor. Know.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NetRef: Classroom Management",
  "description": "Manage. Monitor. Know.",
  "version": "2023.7",
  "manifest_version": 2,
  "minimum_chrome_version": "87",
  "background": {
    "scripts": [
      "background/helpers/psl.min.js",
      "background/helpers/moment.min.js",
      "background/mlab/ndt7.min.js",
      "background/config.min.js",
      "background/browser.min.js",
      "background/netrefPlugin.min.js"
    ],
    "persistent": true
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "identity",
    "identity.email",
    "enterprise.deviceAttributes",
    "notifications",
    "activeTab",
    "webRequest"
  ],
  "icons": {
    "16": "img/icon.png",
    "22": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background/helpers/mouseMoveDetection.min.js"
      ]
    }
  ]
}