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是由reactfetchtree開發的Chrome擴展程式,該擴展的主要功能是“Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載React Fetch Tree擴展crx文件

下載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
官方網址 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"
}