React Hook Form Developer Tools

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

Co to jest React Hook Form Developer Tools?

React Hook Form Developer Tools to rozszerzenie Chrome opracowane przez bluebill1049, a jego główną funkcją jest „React Hook Form developer tools to help debug forms with validation.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia React Hook Form Developer Tools

Pobierz pliki rozszerzeń React Hook Form Developer Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa React Hook Form Developer Tools React Hook Form Developer Tools
ID cangfmbpembbepmmechnanpmddndpaji
Oficjalny URL https://chromewebstore.google.com/detail/react-hook-form-developer/cangfmbpembbepmmechnanpmddndpaji
Opis React Hook Form developer tools to help debug forms with validation.
Rozmiar pliku 117 KB
Liczba instalacji 3,209
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2022-08-11
Data Publikacji 2022-08-11
Ocena 3.20/5 Łącznie 5 Oceny
Deweloper bluebill1049
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://react-hook-form.com/
Obsługiwane Języki 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"
    ]
}