RSC Devtools
React Server Components network visualizer
Apa itu RSC Devtools?
RSC Devtools adalah ekstensi Chrome yang dikembangkan oleh Alvar Lagerlöf, dan fitur utamanya adalah "React Server Components network visualizer".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi RSC Devtools
Unduh file ekstensi RSC Devtools 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
This is a tool that lets you record streaming data from React Server Components to then visualize and explore it. You can see how your components and data are loading and in what order and it lets you travel back in time by dragging the timeline slider.
Informasi Dasar Ekstensi
Nama | RSC Devtools |
ID | jcejahepddjnppkhomnidalpnnnemomn |
URL Resmi | https://chromewebstore.google.com/detail/rsc-devtools/jcejahepddjnppkhomnidalpnnnemomn |
Deskripsi | React Server Components network visualizer |
Ukuran File | 195 KB |
Jumlah Instalasi | 2,000 |
Versi Saat Ini | 0.1.15 |
Terakhir Diperbarui | 2024-02-18 |
Tanggal Publikasi | 2023-08-16 |
Penilaian | 4.88/5 Total 8 Penilaian |
Pengembang | Alvar Lagerlöf |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/alvarlagerlof/rsc-parser |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RSC Devtools", "version": "0.1.15", "description": "React Server Components network visualizer", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "manifest_version": 3, "devtools_page": "devtools-page.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "fetch-patch.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |