React Fetch Tree
Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Vad är React Fetch Tree?
React Fetch Tree är en Chrome-tillägg utvecklad av reactfetchtree, och dess huvudfunktion är "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".
Tilläggsskärmbilder
Ladda ner React Fetch Tree-förlängningens CRX-fil
Ladda ner React Fetch Tree-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.
Grundläggande Information om Tillägg
Namn | React Fetch Tree |
ID | pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Officiell webbadress | https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Beskrivning | Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser |
Filstorlek | 548 KB |
Antal Installationer | 94 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-04-17 |
Publiceringsdatum | 2021-04-16 |
Utvecklare | reactfetchtree |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.reactfetchtree.com |
Hjälpsida URL | https://github.com/oslabs-beta/react-fetch-tree |
Stödda Språk | 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" } |