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
官方網址 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"
    ]
}