Examine source code of FlowShot

Inspect and view changes in FlowShot 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": "FlowShot",
  "version": "1.1",
  "description": "A Chrome extension that exports all divs in the webpage to images",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js",
        "html2canvas.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}