ExamRoom.AI

ExamRoom.AI

An online proctoring system.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ExamRoom.AI",
  "version": "2.12",
  "description": "An online proctoring system.",
  "manifest_version": 3,
  "permissions": [
    "notifications",
    "tabs",
    "management",
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "devtools_page": "/developer.html",
  "externally_connectable": {
    "matches": [
      "https://examroom.ai/*",
      "https://test.examroom.ai/*"
    ],
    "use_dynamic_url": true
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/16w/16.png"
  },
  "icons": {
    "16": "images/16w/16.png",
    "32": "images/32w/32.png",
    "48": "images/48w/48.png",
    "128": "images/128w/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}