RSC Devtools
React Server Components network visualizer
什么是RSC Devtools?
RSC Devtools是由Alvar Lagerlöf开发的Chrome扩展程序,该扩展的主要功能是“React Server Components network visualizer”。
扩展截图
下载RSC Devtools扩展crx文件
下载RSC Devtools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | RSC Devtools |
ID | jcejahepddjnppkhomnidalpnnnemomn |
官方URL | https://chromewebstore.google.com/detail/rsc-devtools/jcejahepddjnppkhomnidalpnnnemomn |
简介 | React Server Components network visualizer |
文件大小 | 195 KB |
安装次数 | 2,000 |
当前版本 | 0.1.15 |
更新时间 | 2024-02-18 |
上架时间 | 2023-08-16 |
评分 | 4.88/5 共8次评分 |
开发者 | Alvar Lagerlöf |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/alvarlagerlof/rsc-parser |
支持的语言 | 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:\/\/*\/*" ] } ] } |