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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}