React Fetch Tree

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

Qu'est-ce que React Fetch Tree ?

React Fetch Tree est une extension Chrome développée par reactfetchtree, et sa fonction principale est "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension React Fetch Tree

Téléchargez les fichiers d'extension React Fetch Tree au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
URL Officiel 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
Taille du Fichier 548 KB
Nombre d'Installations 94
Version Actuelle 1.0
Dernière Mise à Jour 2021-04-17
Date de Publication 2021-04-16
Développeur reactfetchtree
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.reactfetchtree.com
URL de la Page d'Aide https://github.com/oslabs-beta/react-fetch-tree
Langues Prises en Charge 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"
}