HTML to React

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

Was ist HTML to React?

HTML to React ist eine Chrome-Erweiterung, die von https://htmltoreact.app entwickelt wurde, und ihr Hauptmerkmal ist "The fastest and smartest way to analyze HTML elements and generate full React component representations.".

Erweiterungsscreenshots

screenshot

HTML to React-Erweiterungs-CRX-Datei herunterladen

Laden Sie HTML to React-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        HTML to React is an extension that helps you convert any website element into a React component. It analyzes HTML semantics, CSS style sheets and compiles the selected DOM element into JSX code. It is in open beta, so expect more features coming soon!                    

Grundlegende Informationen zur Erweiterung

Name HTML to React HTML to React
ID glefoejbpalgpdgfbbmemfgegepiamnd
Offizielle URL https://chromewebstore.google.com/detail/html-to-react/glefoejbpalgpdgfbbmemfgegepiamnd
Beschreibung The fastest and smartest way to analyze HTML elements and generate full React component representations.
Dateigröße 342 KB
Installationsanzahl 1,755
Aktuelle Version 0.0.3
Letztes Update 2023-12-14
Veröffentlichungsdatum 2021-08-13
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://htmltoreact.app
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
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": [
                ""
            ]
        }
    ],
    "permissions": [
        "scripting",
        "activeTab",
        "clipboardWrite"
    ],
    "host_permissions": [
        ""
    ],
    "version": "0.0.3",
    "background": {
        "service_worker": "background.js"
    }
}