React Hook Form Developer Tools

React Hook Form developer tools to help debug forms with validation.

Cos'è React Hook Form Developer Tools?

React Hook Form Developer Tools è un'estensione di Chrome sviluppata da bluebill1049, e la sua funzione principale è "React Hook Form developer tools to help debug forms with validation.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione React Hook Form Developer Tools

Scarica i file di estensione React Hook Form Developer Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        React Hook Form Developer Tools is a Chrome DevTools extension for the open-source React Hook Form library. It allows you to debug and inspect your form application state within the chrome developer tools.                    

Informazioni di Base sull'Estensione

Nome React Hook Form Developer Tools React Hook Form Developer Tools
ID cangfmbpembbepmmechnanpmddndpaji
URL Ufficiale https://chromewebstore.google.com/detail/react-hook-form-developer/cangfmbpembbepmmechnanpmddndpaji
Descrizione React Hook Form developer tools to help debug forms with validation.
Dimensione del File 117 KB
Conteggio Installazioni 3,209
Versione Corrente 0.1.1
Ultimo Aggiornamento 2022-08-11
Data di Pubblicazione 2022-08-11
Valutazione 3.20/5 Totale 5 Valutazioni
Sviluppatore bluebill1049
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://react-hook-form.com/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "React Hook Form Developer Tools",
    "version": "0.1.1",
    "description": "React Hook Form developer tools to help debug forms with validation.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon16-gray.png",
            "32": "images\/icon32-gray.png",
            "48": "images\/icon48-gray.png",
            "128": "images\/icon128-gray.png"
        },
        "default_popup": "popup.html"
    },
    "devtools_page": "index.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "webNavigation"
    ]
}