Minimal Square - Webflow Chrome Extension

Minimal Square - Webflow Chrome Extension

Supercharge your Webflow productivity with the Minimal Square Chrome Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Minimal Square - Webflow Chrome Extension",
  "author": "Minimal Square",
  "version": "1.0.1",
  "description": "Supercharge your Webflow productivity with the Minimal Square Chrome Extension.",
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.js",
        "assets/content-script-loader.injected.js"
      ],
      "matches": [
        "https://*.design.webflow.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/index.js.css"
      ]
    }
  ],
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.design.webflow.com/*"
      ],
      "resources": [
        "images/*"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://*.design.webflow.com/*"
      ],
      "resources": [
        "assets/index.js",
        "assets/injected.js"
      ],
      "use_dynamic_url": true
    }
  ]
}