RSC Devtools

React Server Components network visualizer

Что такое RSC Devtools?

RSC Devtools - это расширение Chrome, разработанное Alvar Lagerlöf, и его основная функция - "React Server Components network visualizer".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения RSC Devtools

Скачайте файлы расширений 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
Электронная почта [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:\/\/*\/*"
            ]
        }
    ]
}