reactFLO

A dev tool that helps developers visualize the flow of state through their React app

Что такое reactFLO?

reactFLO - это расширение Chrome, разработанное reactflo, и его основная функция - "A dev tool that helps developers visualize the flow of state through their React app".

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

screenshot

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

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

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

                        As React applications scale, tracking the flow of state and props can be difficult. 

reactFLO allows developers to see their component hierarchy tree and identify the flow of state and props through their application, as well as their relationship with other components that may hold those props.                    

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

Название reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Официальный URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Описание A dev tool that helps developers visualize the flow of state through their React app
Размер файла 5.17 MB
Количество установок 30
Текущая Версия 1.0
Последнее Обновление 2020-05-31
Дата публикации 2020-05-31
Разработчик reactflo
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "reactFLO",
    "version": "1.0",
    "description": "A dev tool that helps developers visualize the flow of state through their React app",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "main.js"
    ],
    "permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "reactflo16.png",
        "48": "reactflo48.png",
        "128": "reactflo128.png"
    },
    "manifest_version": 2
}