Examine source code of Drawboard PDF: Annotate, merge, split, convert

Inspect and view changes in Drawboard PDF: Annotate, merge, split, convert 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": "Drawboard PDF: Annotate, merge, split, convert",
  "description": "Powerful PDF tools for every job. Mark up, edit and collaborate on PDFs. Fill, sign, convert and measure seamlessly in your browser.",
  "version": "1.1",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "file://*",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "allowAccess.html",
        "loader.html",
        "loader.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "intercept.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "gmail.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "openWithButton.js"
      ],
      "css": [
        "openWithButton.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}