Examine source code of Screenshot to Notion & Annotate

Inspect and view changes in Screenshot to Notion & Annotate 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": "Screenshot to Notion & Annotate",
  "version": "1.0.3",
  "description": "Snap and embed website and scrolling screenshots directly to Notion with annotation tools like arrows, callouts, crop +30 more tools",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/mh-g16.png",
      "32": "images/mh-g32.png",
      "48": "images/mh-g48.png",
      "128": "images/mh-g128.png"
    }
  },
  "icons": {
    "16": "images/mh-g16.png",
    "32": "images/mh-g32.png",
    "48": "images/mh-g48.png",
    "128": "images/mh-g128.png"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "activeTab",
    "tabs",
    "desktopCapture",
    "scripting",
    "cookies"
  ],
  "host_permissions": [
    "https://markuphero.com/",
    "https://storage.googleapis.com/",
    "https://api.notion.com/",
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.markuphero.com/*",
      "*://localhost/*"
    ]
  }
}