RSC Devtools

React Server Components network visualizer

RSC Devtoolsとは何ですか?

RSC DevtoolsはAlvar Lagerlöfによって開発されたChromeの拡張機能で、その主な機能は「React Server Components network visualizer」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}