React Hook Form Developer Tools

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

What is React Hook Form Developer Tools?

React Hook Form Developer Tools is a Chrome extension developed by bluebill1049, and its main feature is "React Hook Form developer tools to help debug forms with validation.".

Extension Screenshots

screenshot

Download React Hook Form Developer Tools Extension CRX File

Download React Hook Form Developer Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name React Hook Form Developer Tools React Hook Form Developer Tools
ID cangfmbpembbepmmechnanpmddndpaji
Official URL https://chromewebstore.google.com/detail/react-hook-form-developer/cangfmbpembbepmmechnanpmddndpaji
Description React Hook Form developer tools to help debug forms with validation.
File Size 117 KB
Installation Count 3,209
Current Version 0.1.1
Last Updated 2022-08-11
Publish Date 2022-08-11
Rating 3.20/5 Total 5 Ratings
Developer bluebill1049
Email [email protected]
Payment Type free
Extension Website https://react-hook-form.com/
Supported Languages 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"
    ]
}