iProctor Extension - Assess App

iProctor Extension - Assess App

This is the chrome extension for iProctor, the proctoring module of Assess App.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "iProctor Extension - Assess App",
  "short_name": "iProctor Extension - Assess App",
  "description": "This is the chrome extension for iProctor, the proctoring module of Assess App.",
  "homepage_url": "http://chrome.google.com/webstore",
  "version": "1.2.5",
  "version_name": "1.2.5",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "109",
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "activeTab",
    "offscreen",
    "management",
    "webRequest",
    "system.display"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "assets/img/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "assets/img/16.png"
    },
    "default_title": "iProctor Extension"
  },
  "externally_connectable": {
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "cameraSources.html",
        "cameraSources.js",
        "audioSources.html",
        "audioSources.js",
        "blocker.html",
        "assets/hardware/recording.gif",
        "assets/synch/warning.png",
        "assets/synch/close.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}