POCU Proctor

POCU Proctor

POCU Proctor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0.0",
  "minimum_chrome_version": "93",
  "name": "POCU Proctor",
  "short_name": "POCU Proctor",
  "description": "POCU Proctor",
  "default_locale": "en",
  "action": {
    "default_popup": "index.html",
    "default_title": "New Proctor"
  },
  "icons": {
    "16": "img/16x16.png",
    "24": "img/24x24.png",
    "32": "img/32x32.png",
    "48": "img/48x48.png",
    "64": "img/64x64.png",
    "128": "img/128x128.png",
    "256": "img/256x256.png",
    "512": "img/512x512.png"
  },
  "permissions": [
    "system.display",
    "declarativeNetRequest",
    "desktopCapture",
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://test.pocu.academy/Tests/*",
        "https://test.pocu.academy/BetaTests/*"
      ],
      "js": [
        "./js/content.js"
      ],
      "css": [
        "./css/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://test.pocu.academy/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; style-src 'self'; object-src 'self'"
  }
}