Markflow: Copy Elements to Figma, React, etc.

Markflow: Copy Elements to Figma, React, etc.

Introducing Markflow, the ultimate Chrome extension designed to simplify the workflow for web designers and developers. Easily copy…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Markflow: Copy Elements to Figma, React, etc.",
  "version": "1.0.2.0",
  "version_name": "1.0.2",
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "icon-128.png",
        "icon-34.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/index.js",
        "assets/_commonjsHelpers.js",
        "assets/messages.js",
        "assets/content_script.tsx.js",
        "assets/subscribe_dialog_script.tsx.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "webNavigation",
    "tabs",
    "debugger"
  ],
  "host_permissions": [
    "https://markflow.app/*"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "commands": {
    "toggleMarkflow": {
      "suggested_key": {
        "default": "Ctrl+M"
      },
      "description": "Toggle markflow on/off"
    }
  },
  "action": {}
}