Examine source code of DocsInk Care Manager Extension

Inspect and view changes in DocsInk Care Manager 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
{
  "name": "DocsInk Care Manager Extension",
  "short_name": "DocsInk CM",
  "version": "0.0.0.2",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png",
        "icon.ico"
      ],
      "matches": [
        "https://*.docsink.com/*",
        "https://*.athenahealth.com/*",
        "https://*.pointclickcare.com/*",
        "https://*.eclinicalworks.com/*",
        "https://*.elationemr.com/*",
        "https://*.modmed.com/*",
        "https://modernizingmedicine.force.com/*",
        "https://login.advancedmd.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "DocsInk Care Manager"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.docsink.com/*",
        "https://*.athenahealth.com/*",
        "https://*.pointclickcare.com/*",
        "https://*.eclinicalworks.com/*",
        "https://*.elationemr.com/*",
        "https://*.modmed.com/*",
        "https://modernizingmedicine.force.com/*",
        "https://login.advancedmd.com/*"
      ],
      "exclude_globs": [
        "https://*.docsink.com/sso*"
      ],
      "css": [
        "/static/css/main.css",
        "/static/css/content.css"
      ],
      "js": [
        "/static/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "activeTab",
    "scripting"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}