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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย reactmonitorfiber และคุณลักษณะหลักของมันคือ "ReactMonitor Quickly visualize React's component tree performance for improved onboarding and debugging What does it do By using…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย React Monitor

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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'"
}