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 |
官方網址 | 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:\/\/*\/*" ] } ] } |