Examine source code of draw.io for Notion

Inspect and view changes in draw.io for Notion 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",
  "name": "draw.io for Notion",
  "version": "1.3.0",
  "description": "Insert draw.io diagrams in Notion pages and edit them",
  "host_permissions": [
    "https://*.notion.so/*",
    "https://*.notion.site/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.notion.so/*",
        "https://*.notion.site/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 3
}