Finsweet Extension for Webflow

Finsweet Extension for Webflow

A suite of F'in sweet tools to improve your Webflow development experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Finsweet Extension for Webflow",
  "description": "A suite of F'in sweet tools to improve your Webflow development experience.",
  "version": "0.17.1",
  "manifest_version": 3,
  "author": "Finsweet",
  "permissions": [
    "storage",
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "https://webflow.com/design*",
    "https://cdn.jsdelivr.net/*",
    "https://my.finsweet.com/*"
  ],
  "icons": {
    "16": "images/fs16.png",
    "32": "images/fs32.png",
    "48": "images/fs48.png",
    "128": "images/fs128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://webflow.com/design*",
        "https://*.design.webflow.com/*"
      ],
      "css": [
        "./designer/assets/index.css"
      ],
      "js": [
        "./designer/assets/index.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://webflow.com/dashboard*"
      ],
      "css": [
        "./dashboard/assets/index.css"
      ],
      "js": [
        "./dashboard/assets/index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "designer/*",
        "images/*"
      ],
      "matches": [
        "https://*.webflow.com/*"
      ]
    }
  ]
}