React Monitor

ReactMonitor Quickly visualize React's component tree performance for improved onboarding and debugging What does it do By using…

什麼是React Monitor?

React Monitor是由reactmonitorfiber開發的Chrome擴展程式,該擴展的主要功能是“ReactMonitor Quickly visualize React's component tree performance for improved onboarding and debugging What does it do By using…”。

擴展截圖

screenshot
screenshot

下載React Monitor擴展crx文件

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

擴展使用說明

                        ReactMonitor
Quickly visualize React's component tree performance for improved onboarding and debugging

What does it do
By using the ReactMonitor Chrome DevTool, beginning and experienced developers alike are able to get a visual representation of an existing codebase that they are working on. Built with React, this tool will dynamically traverse the fiber root object behind the scenes, displaying state, props, render times and the type of components on the page.

How to install and run?
Run the NPM package in your own codebase by following the steps below.

- Install the package (npm install reactmonitorfiber)
- Require/Import the package (import reactMonitor from 'reactmonitorfiber')
- Invoke React Monitor with an input of the DOM element that you are rendering the React Element into
      const container = document.querySelector('#root');
      reactDOM.render(, container);
      reactMonitor(container);
- Navigate to the domain of your React application that you will be running React Monitor on
- Open your Chrome Developer Tools and select React Monitor

You are now able to view state changes on your application in real time!                    

擴展基本資訊

名稱 React Monitor React Monitor
ID fmmeapmiaceajgihganackickhkomgla
官方網址 https://chromewebstore.google.com/detail/react-monitor/fmmeapmiaceajgihganackickhkomgla
簡介 ReactMonitor Quickly visualize React's component tree performance for improved onboarding and debugging What does it do By using…
檔案大小 1.3 MB
安裝次數 138
目前版本 0.0.0.1
更新時間 2020-06-19
上架時間 2020-06-19
開發者 reactmonitorfiber
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React Monitor",
    "version": "0.0.0.1",
    "devtools_page": "devtools.html",
    "permissions": [
        "activeTab",
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/rm-icon16.png",
        "48": ".\/assets\/rm-icon-48.png",
        "128": ".\/assets\/rm-icon-128.png"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}