React Fetch Tree
Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Hvad er React Fetch Tree?
React Fetch Tree er en Chrome-udvidelse udviklet af reactfetchtree, og dens hovedfunktion er "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".
Udvidelsesskærmbilleder
Download React Fetch Tree-udvidelses-CRX-fil
Download React Fetch Tree-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.
Grundlæggende oplysninger om udvidelsen
Navn | React Fetch Tree |
ID | pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Officiel URL | https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Beskrivelse | Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser |
Filstørrelse | 548 KB |
Antal Installationer | 94 |
Nuværende Version | 1.0 |
Senest Opdateret | 2021-04-17 |
Udgivelsesdato | 2021-04-16 |
Udvikler | reactfetchtree |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.reactfetchtree.com |
Hjælpeside-URL | https://github.com/oslabs-beta/react-fetch-tree |
Understøttede Sprog | 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" } |