Flowl: How-to instructions in Seconds

Flowl: How-to instructions in Seconds

Generate step-by-step visual how-to-s 10X faster. Just turn on the extension, complete your process as usual, and Flowl App does…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flowl: How-to instructions in Seconds",
  "manifest_version": 3,
  "version": "1.0.0",
  "action": {
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webNavigation",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "scripts/utils.js",
        "scripts/content-script/styles.js",
        "scripts/content-script/index.js"
      ]
    },
    {
      "matches": [
        "http://localhost:3000/",
        "https://screenshoter-clone.vercel.app/"
      ],
      "js": [
        "scripts/detector/index.js"
      ]
    }
  ]
}