Webflow Collection Reorder

Webflow Collection Reorder

Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Webflow Collection Reorder",
  "description": "Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface. ",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_title": "Webflow Collection Reorder",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.webflow.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.webflow.com/design/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon2.png"
      ],
      "matches": [
        "https://*.webflow.com/*"
      ]
    }
  ]
}