React Fetch Tree

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

Wat is React Fetch Tree?

React Fetch Tree is een Chrome-extensie ontwikkeld door reactfetchtree, en de belangrijkste functie is "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie React Fetch Tree

Download React Fetch Tree-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Officiële URL https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Beschrijving Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Bestandsgrootte 548 KB
Aantal Installaties 94
Huidige Versie 1.0
Laatst Bijgewerkt 2021-04-17
Publicatiedatum 2021-04-16
Ontwikkelaar reactfetchtree
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.reactfetchtree.com
Help Pagina-URL https://github.com/oslabs-beta/react-fetch-tree
Ondersteunde Talen 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"
}