React Fetch Tree

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

What is React Fetch Tree?

React Fetch Tree is a Chrome extension developed by reactfetchtree, and its main feature is "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download React Fetch Tree Extension CRX File

Download React Fetch Tree extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Official URL https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Description Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
File Size 548 KB
Installation Count 94
Current Version 1.0
Last Updated 2021-04-17
Publish Date 2021-04-16
Developer reactfetchtree
Email [email protected]
Payment Type free
Extension Website https://www.reactfetchtree.com
Help Page URL https://github.com/oslabs-beta/react-fetch-tree
Supported Languages 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"
}