Deezign

Deezign

Instantly convert your Figma designs to Bubble.io elements. Paste the elements from the extension into your Bubble editor.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Deezign",
  "version": "1.0.3",
  "description": "Instantly convert your Figma designs to Bubble.io elements. Paste the elements from the extension into your Bubble editor.",
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "declarativeContent"
  ],
  "host_permissions": [
    "*://*.bubble.com/*",
    "*://*.bubble.io/*",
    "*://*.bubble.is/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "48": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png"
      ],
      "matches": [
        "*://*.bubble.com/*",
        "*://*.bubble.io/*",
        "*://*.bubble.is/*"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": ""
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bubble.com/*",
        "*://*.bubble.io/*",
        "*://*.bubble.is/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}