Synoptic

Synoptic

Exam condition enforcing extension to be used with the Synap Learning platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Synoptic",
  "description": "Exam condition enforcing extension to be used with the Synap Learning platform",
  "version": "2.4",
  "action": {
    "default_icon": {
      "16": "synoptic_fav.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/translations/*.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "system.display",
    "windows",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}