C-React

A Chrome Extension tool that visualizes React rendering of components

C-React란 무엇입니까?

C-React은(는) C-React에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension tool that visualizes React rendering of components"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

C-React 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        C-React is an open-source tool that visualizes DOM components as a tree, marks rendering patterns on web pages, and displays performance metrics.

The C-React Developer Tool displays a DOM component tree within the Chrome Developer Panel, which receives data sent from our Custom Renderer (https://www.npmjs.com/package/creact-visualizer). Our Developer Tool dynamically updates and communicates with the webpage to visualize component changes and also provides performance metrics of components to promote efficient load times.

Instructions: 
1. C-React DevTool from the Chrome Web Store
2. Open your React application, rendered by our Custom Renderer
3. Open Chrome Developer Tools and click on the C-React panel
4. Watch the tree update dynamically as you navigate through your web page by clicking on components
5. Click on tree nodes to see corresponding element highlighted on your web page

This Dev Tool also works with any webpage that is not rendered by our Customer Renderer, but it will not display loading times for specific elements or display corresponding element highlighted on your web page when a tree node is clicked.

Visit us at https://www.c-react.dev/                    

확장 프로그램 기본 정보

이름 C-React C-React
ID lbkchokjjlobhgplflifppneonadpejl
공식 URL https://chromewebstore.google.com/detail/c-react/lbkchokjjlobhgplflifppneonadpejl
설명 A Chrome Extension tool that visualizes React rendering of components
파일 크기 701 KB
설치 횟수 36
현재 버전 1.1
최근 업데이트 2023-05-21
출시 날짜 2023-05-21
평점 5.00/5 총 4 개의 평점
개발자 C-React
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.c-react.dev/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "C-React",
    "version": "1.1",
    "devtools_page": "devtools.html",
    "description": "A Chrome Extension tool that visualizes React rendering of components",
    "background": {
        "service_worker": "public\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/localhost\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "public\/content.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/logo_16.png",
        "48": "assets\/logo_48.png",
        "128": "assets\/logo_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "..\/..\/client\/components\/App.tsx",
                "panel.html",
                "public\/background.bundle.js",
                ".\/contentScript.js",
                ".\/injectScript.js"
            ],
            "matches": [
                ""
            ],
            "js": [
                "App.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "contextMenus",
        "storage"
    ]
}