RSC Devtools

React Server Components network visualizer

RSC Devtools란 무엇입니까?

RSC Devtools은(는) Alvar Lagerlöf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "React Server Components network visualizer"입니다.

확장 프로그램 스크린샷

screenshot

RSC Devtools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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:\/\/*\/*"
            ]
        }
    ]
}