React Fetch Tree

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

React Fetch Treeคืออะไร?

React Fetch Tree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย reactfetchtree และคุณลักษณะหลักของมันคือ "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย React Fetch Tree ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
คำอธิบาย Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
ขนาดไฟล์ 548 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-04-17
วันที่เผยแพร่ 2021-04-16
ผู้พัฒนา reactfetchtree
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.reactfetchtree.com
URL หน้าช่วยเหลือ https://github.com/oslabs-beta/react-fetch-tree
ภาษาที่รองรับ 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"
}