Relume Chrome Extension for Webflow

Relume Chrome Extension for Webflow

Boost your productivity in Webflow with the Relume 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": "Relume Chrome Extension for Webflow",
  "description": "Boost your productivity in Webflow with the Relume Chrome Extension.",
  "version": "50",
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "action": {
    "default_icon": "logo.png"
  },
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://webflow.com/*/*",
        "*://*.design.webflow.com/",
        "*://*.design.webflow.com/*"
      ],
      "world": "ISOLATED",
      "js": [
        "webflow_content.js"
      ]
    },
    {
      "matches": [
        "*://webflow.com/*/*",
        "*://*.design.webflow.com/",
        "*://*.design.webflow.com/*"
      ],
      "world": "MAIN",
      "js": [
        "webflow_content_window.js"
      ]
    },
    {
      "matches": [
        "*://library.relume.io/*",
        "*://www.relume.io/*"
      ],
      "world": "ISOLATED",
      "js": [
        "relume_content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "webflow_content_window.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "clipboardRead",
    "clipboardWrite"
  ]
}