RSC Devtools

React Server Components network visualizer

Vad är RSC Devtools?

RSC Devtools är en Chrome-tillägg utvecklad av Alvar Lagerlöf, och dess huvudfunktion är "React Server Components network visualizer".

Tilläggsskärmbilder

screenshot

Ladda ner RSC Devtools-förlängningens CRX-fil

Ladda ner RSC Devtools-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn RSC Devtools RSC Devtools
ID jcejahepddjnppkhomnidalpnnnemomn
Officiell webbadress https://chromewebstore.google.com/detail/rsc-devtools/jcejahepddjnppkhomnidalpnnnemomn
Beskrivning React Server Components network visualizer
Filstorlek 195 KB
Antal Installationer 2,000
Aktuell Version 0.1.15
Senast Uppdaterad 2024-02-18
Publiceringsdatum 2023-08-16
Betyg 4.88/5 Totalt 8 Betyg
Utvecklare Alvar Lagerlöf
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/alvarlagerlof/rsc-parser
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}