Examine source code of Causaly

Inspect and view changes in Causaly 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": "Causaly",
  "description": "Causaly Web Extension",
  "permissions": [
    "cookies",
    "tabs"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "host_permissions": [
    "https://med.causaly.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "bundle.js"
      ],
      "matches": [
        "https://pubmed.ncbi.nlm.nih.gov/*",
        "https://ncbi.nlm.nih.gov/*",
        "https://www.pubmed.ncbi.nlm.nih.gov/*",
        "https://www.ncbi.nlm.nih.gov/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_title": "Causaly"
  },
  "version": "2.0.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}