FlowShot

FlowShot

A Chrome extension that exports all divs in the webpage to images

Merlin
Additional files are visible only to premium users

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"
}