React Fetch Tree
Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Was ist React Fetch Tree?
React Fetch Tree ist eine Chrome-Erweiterung, die von reactfetchtree entwickelt wurde, und ihr Hauptmerkmal ist "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".
Erweiterungsscreenshots
React Fetch Tree-Erweiterungs-CRX-Datei herunterladen
Laden Sie React Fetch Tree-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.
Grundlegende Informationen zur Erweiterung
Name | React Fetch Tree |
ID | pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Offizielle URL | https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Beschreibung | Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser |
Dateigröße | 548 KB |
Installationsanzahl | 94 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-04-17 |
Veröffentlichungsdatum | 2021-04-16 |
Entwickler | reactfetchtree |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.reactfetchtree.com |
Hilfeseite URL | https://github.com/oslabs-beta/react-fetch-tree |
Unterstützte Sprachen | 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" } |