React Fetch Tree
Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Co to jest React Fetch Tree?
React Fetch Tree to rozszerzenie Chrome opracowane przez reactfetchtree, a jego główną funkcją jest „Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia React Fetch Tree
Pobierz pliki rozszerzeń React Fetch Tree w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.
Podstawowe informacje o rozszerzeniu
Nazwa | React Fetch Tree |
ID | pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Oficjalny URL | https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Opis | Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser |
Rozmiar pliku | 548 KB |
Liczba instalacji | 94 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-04-17 |
Data Publikacji | 2021-04-16 |
Deweloper | reactfetchtree |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.reactfetchtree.com |
Adres URL Strony Pomocy | https://github.com/oslabs-beta/react-fetch-tree |
Obsługiwane Języki | 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" } |