XSMBNL

An extension for adjusting the width of the Figma property panel by dragging the edge.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "XSMBNL",
  "version": "0.0.0.2",
  "description": "An extension for adjusting the width of the Figma property panel by dragging the edge.",
  "manifest_version": 3,
  "icons": {
    "512": "assets/icon/512.png"
  },
  "action": {
    "default_popup": "/src/popup/popup.html",
    "default_icon": {
      "512": "/assets/icon/512.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.figma.com/*"
      ],
      "js": [
        "/src/inject/script.js"
      ],
      "css": [
        "/src/inject/style.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}