React Fetch Tree
Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Apa itu React Fetch Tree?
React Fetch Tree adalah ekstensi Chrome yang dikembangkan oleh reactfetchtree, dan fitur utamanya adalah "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi React Fetch Tree
Unduh file ekstensi React Fetch Tree dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.
Informasi Dasar Ekstensi
Nama | React Fetch Tree |
ID | pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
URL Resmi | https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom |
Deskripsi | Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser |
Ukuran File | 548 KB |
Jumlah Instalasi | 94 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2021-04-17 |
Tanggal Publikasi | 2021-04-16 |
Pengembang | reactfetchtree |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.reactfetchtree.com |
URL Halaman Bantuan | https://github.com/oslabs-beta/react-fetch-tree |
Bahasa yang Didukung | 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" } |