Examine source code of MedSet Chrome Extension

Inspect and view changes in MedSet Chrome 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MedSet Chrome Extension",
  "version": "2.5.0",
  "description": "Chrome extension for MedSet MDS",
  "content_scripts": [
    {
      "matches": [
        "https://*.pointclickcare.com/*",
        "https://*.medsetmds.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app.js",
        "node_modules/recharts/**/*"
      ],
      "matches": [
        "https://*.pointclickcare.com/*",
        "https://*.medsetmds.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'"
  }
}