Examine source code of eID Edge Extension

Inspect and view changes in eID Edge Extension 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
{
  "manifest_version": 3,
  "name": "eID Edge Extension",
  "description": "Edge extension for the Belgium eID card",
  "version": "1.0.2",
  "icons": {
    "38": "icon38.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.e-contract.be/*",
        "https://localhost/*",
        "https://*.ejustice.be/*",
        "https://*.auctionline.be/*",
        "https://*.nkcn-cia.be/*",
        "https://*.jd-consult.be/*",
        "https://*.allsoft.be/*",
        "https://*.orpea.net/*",
        "http://*.orpea.net/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}