HTML to React

HTML to React

The fastest and smartest way to analyze HTML elements and generate full React component representations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HTML to React",
  "description": "The fastest and smartest way to analyze HTML elements and generate full React component representations.",
  "homepage_url": "https://htmltoreact.app/",
  "icons": {
    "16": "./icons/active-16.png",
    "32": "./icons/active-32.png",
    "48": "./icons/active-48.png",
    "128": "./icons/active-128.png"
  },
  "action": {
    "default_title": "Start",
    "default_icon": {
      "16": "./icons/inactive-16.png",
      "32": "./icons/inactive-32.png",
      "48": "./icons/inactive-48.png",
      "128": "./icons/inactive-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "activeTab",
    "clipboardWrite"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "0.0.3",
  "background": {
    "service_worker": "background.js"
  }
}