Flowbase Chrome Extension

Flowbase Chrome Extension

Unlock advanced features directly inside of the Webflow designer. Copy from thousands of components, free icon packs and much more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Flowbase Chrome Extension",
  "description": "Unlock advanced features directly inside of the Webflow designer. Copy from thousands of components, free icon packs and much more!",
  "action": {
    "default_icon": {
      "16": "assets/icons/logo16-color.png",
      "48": "assets/icons/logo48-color.png",
      "128": "assets/icons/logo128-color.png"
    },
    "default_popup": "popup/index.html",
    "default_title": "Flowbase"
  },
  "icons": {
    "48": "assets/icons/logo48-color.png",
    "128": "assets/icons/logo128-color.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://webflow.com/design*",
        "https://*.design.webflow.com/*"
      ],
      "css": [
        "panel/style.css"
      ],
      "js": [
        "panel/index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://webflow.com/*",
        "https://*.design.webflow.com/*"
      ],
      "resources": [
        "assets/images/*",
        "assets/icons/*",
        "assets/fonts/*",
        "popup/*",
        "integration.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "version": "2.2.0"
}