C-React

A Chrome Extension tool that visualizes React rendering of components

C-React là gì?

C-React là một tiện ích mở rộng Chrome được phát triển bởi C-React, và tính năng chính của nó là "A Chrome Extension tool that visualizes React rendering of components".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng C-React

Tải xuống các tệp mở rộng C-React dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên C-React C-React
ID lbkchokjjlobhgplflifppneonadpejl
URL Chính Thức https://chromewebstore.google.com/detail/c-react/lbkchokjjlobhgplflifppneonadpejl
Mô tả A Chrome Extension tool that visualizes React rendering of components
Kích Thước Tệp 701 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-05-21
Ngày Phát Hành 2023-05-21
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển C-React
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.c-react.dev/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}