RSC Devtools
React Server Components network visualizer
Co to jest RSC Devtools?
RSC Devtools to rozszerzenie Chrome opracowane przez Alvar Lagerlöf, a jego główną funkcją jest „React Server Components network visualizer”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RSC Devtools
Pobierz pliki rozszerzeń RSC Devtools 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | RSC Devtools |
ID | jcejahepddjnppkhomnidalpnnnemomn |
Oficjalny URL | https://chromewebstore.google.com/detail/rsc-devtools/jcejahepddjnppkhomnidalpnnnemomn |
Opis | React Server Components network visualizer |
Rozmiar pliku | 195 KB |
Liczba instalacji | 2,000 |
Aktualna Wersja | 0.1.15 |
Ostatnia Aktualizacja | 2024-02-18 |
Data Publikacji | 2023-08-16 |
Ocena | 4.88/5 Łącznie 8 Oceny |
Deweloper | Alvar Lagerlöf |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/alvarlagerlof/rsc-parser |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |