React Context DevTool

Devtool for React Context and useReducer

什麼是React Context DevTool?

React Context DevTool是由Deep Patel開發的Chrome擴展程式,該擴展的主要功能是“Devtool for React Context and useReducer”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載React Context DevTool擴展crx文件

下載React Context DevTool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        React Context DevTool is debugging tool for React Context and useReducer API.

You can easily show context values changes in different views like tree, raw and diff view.
Now Devtool suppoer useReducer API. easily debug your state changes and dispatch actions from devtool.

React Context DevTool is open source project 
https://github.com/deeppatel234/react-context-devtool                    

擴展基本資訊

名稱 React Context DevTool React Context DevTool
ID oddhnidmicpefilikhgeagedibnefkcf
官方網址 https://chromewebstore.google.com/detail/react-context-devtool/oddhnidmicpefilikhgeagedibnefkcf
簡介 Devtool for React Context and useReducer
檔案大小 2.36 MB
安裝次數 48,091
目前版本 3.6
更新時間 2023-12-29
上架時間 2020-07-02
評分 4.79/5 共 19 次評分
開發者 Deep Patel
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "React Context DevTool",
    "version": "3.6",
    "description": "Devtool for React Context and useReducer",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/icon16-disabled.png",
            "32": "assets\/icons\/icon32-disabled.png",
            "48": "assets\/icons\/icon48-disabled.png",
            "128": "assets\/icons\/icon128-disabled.png"
        },
        "default_popup": "popup\/disabled.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "devtools_page": "devtool\/devtool.html",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injectGlobalHook.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "react-context-devtool-helper.js"
    ]
}