Examine source code of Examzone Webcheck

Inspect and view changes in Examzone Webcheck source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Examzone Webcheck",
  "manifest_version": 3,
  "name": "Examzone Webcheck",
  "version": "0.1.6",
  "author": "Lukas Diener",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src 'self' https://admin.examzone.ch http://localhost:3000;"
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/examzone16.png",
      "32": "icons/examzone32.png"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://*.examzone.ch/*",
      "*://localhost/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/overlay/notification.html",
        "src/overlay/overlay.html",
        "src/overlay/overlay.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.examzone.ch/*",
        "*://localhost/*"
      ],
      "js": [
        "src/hook.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/overlay/overlay.js"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": []
  },
  "permissions": [
    "webRequest",
    "scripting",
    "declarativeNetRequest",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}