React Hook Form Developer Tools

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

什么是React Hook Form Developer Tools?

React Hook Form Developer Tools是由bluebill1049开发的Chrome扩展程序,该扩展的主要功能是“React Hook Form developer tools to help debug forms with validation.”。

扩展截图

screenshot

下载React Hook Form Developer Tools扩展crx文件

下载React Hook Form Developer Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 React Hook Form Developer Tools React Hook Form Developer Tools
ID cangfmbpembbepmmechnanpmddndpaji
官方URL https://chromewebstore.google.com/detail/react-hook-form-developer/cangfmbpembbepmmechnanpmddndpaji
简介 React Hook Form developer tools to help debug forms with validation.
文件大小 117 KB
安装次数 3,209
当前版本 0.1.1
更新时间 2022-08-11
上架时间 2022-08-11
评分 3.20/5 共5次评分
开发者 bluebill1049
电子邮箱 [email protected]
付费类型 free
扩展官网 https://react-hook-form.com/
支持的语言 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"
    ]
}