Howflow Beta

Howflow Beta

Create easily shareable step-by-step guides in seconds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Howflow Beta",
  "short_name": "Howflow",
  "version": "0.0.0.6",
  "manifest_version": 3,
  "description": "Create easily shareable step-by-step guides in seconds",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Howflow Beta",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/hello.html",
        "pages/hello.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3000/*",
        "*://app.howflow.io/*",
        "*://howflow.io/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentscripts/append_tab_menu.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://app.supademo.com/*",
      "http://localhost:3000/*",
      "*://app.howflow.io/*",
      "*://howflow.io/*"
    ]
  },
  "icons": {
    "16": "/assets/images/supademo_icon_16.png",
    "48": "/assets/images/supademo_icon_48.png",
    "128": "/assets/images/supademo_icon_128.png"
  }
}