React Fetch Tree

Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser

React Fetch Tree là gì?

React Fetch Tree là một tiện ích mở rộng Chrome được phát triển bởi reactfetchtree, và tính năng chính của nó là "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng React Fetch Tree 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

                        React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.                    

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

Tên React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
URL Chính Thức https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Mô tả Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Kích Thước Tệp 548 KB
Số Lần Cài Đặt 94
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-04-17
Ngày Phát Hành 2021-04-16
Nhà Phát Triển reactfetchtree
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.reactfetchtree.com
URL Trang Trợ Giúp https://github.com/oslabs-beta/react-fetch-tree
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React Fetch Tree",
    "description": "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser",
    "version": "1.0",
    "browser_action": {
        "default_icon": "Logo.png"
    },
    "icons": {
        "128": "Logo.png",
        "16": "Logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injectScript.js",
        "images\/*"
    ],
    "devtools_page": "devtools.html"
}