React Fetch Tree

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

Cos'è React Fetch Tree?

React Fetch Tree è un'estensione di Chrome sviluppata da reactfetchtree, e la sua funzione principale è "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione React Fetch Tree

Scarica i file di estensione React Fetch Tree in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
URL Ufficiale https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Descrizione Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Dimensione del File 548 KB
Conteggio Installazioni 94
Versione Corrente 1.0
Ultimo Aggiornamento 2021-04-17
Data di Pubblicazione 2021-04-16
Sviluppatore reactfetchtree
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.reactfetchtree.com
URL della Pagina di Aiuto https://github.com/oslabs-beta/react-fetch-tree
Lingue Supportate 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"
}