Library - UI Components for Wix

Library - UI Components for Wix

Build websites faster in Wix with UI components library.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Library - UI Components for Wix",
  "description": "Build websites faster in Wix with UI components library.",
  "version": "3.0.6",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "24": "assets/default_icon_24.png",
      "64": "assets/default_icon_64.png"
    }
  },
  "icons": {
    "24": "assets/default_icon_24.png",
    "64": "assets/default_icon_64.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://editor.wix.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/wix.js",
        "js/editor.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "https://editor.wix.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://editor.wix.com/*"
  ]
}