Examine source code of medhaX

Inspect and view changes in medhaX 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": "medhaX",
  "description": "Boost Your Clinical Documentation Productivity with the All-in-One AI Assistant",
  "version": "13.0.9",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "options_page": "settings/settings.html",
  "action": {
    "default_title": "Chrome Addon v3 Starter",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "authentication/*",
        "config/*",
        "content.js",
        "typeWriter.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "script-src": "'self'",
    "object-src": "'self'",
    "worker-src": "blob"
  }
}