React Fetch Tree

Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser

Что такое React Fetch Tree?

React Fetch Tree - это расширение Chrome, разработанное reactfetchtree, и его основная функция - "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения React Fetch Tree

Скачайте файлы расширений React Fetch Tree в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.                    

Основная информация о расширении

Название React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Официальный URL https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
Описание Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
Размер файла 548 KB
Количество установок 94
Текущая Версия 1.0
Последнее Обновление 2021-04-17
Дата публикации 2021-04-16
Разработчик reactfetchtree
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.reactfetchtree.com
URL страницы помощи https://github.com/oslabs-beta/react-fetch-tree
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React Fetch Tree",
    "description": "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser",
    "version": "1.0",
    "browser_action": {
        "default_icon": "Logo.png"
    },
    "icons": {
        "128": "Logo.png",
        "16": "Logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injectScript.js",
        "images\/*"
    ],
    "devtools_page": "devtools.html"
}