Udesly Template Configurator

Udesly Template Configurator

Udesly Template Configurator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Udesly Template Configurator",
  "description": "Udesly Template Configurator",
  "version": "1.1.8",
  "action": {
    "default_icon": "icon.png",
    "default_title": "Udesly Template Configurator"
  },
  "content_scripts": [
    {
      "matches": [
        "https://webflow.com/design/*",
        "https://*.design.webflow.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "scripting",
    "declarativeContent"
  ],
  "host_permissions": [
    "https://webflow.com/design/*",
    "https://*.design.webflow.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/udesly-main.js"
      ],
      "matches": [
        "https://webflow.com/*",
        "https://*.design.webflow.com/*"
      ]
    }
  ]
}