reactFLO

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

O que é reactFLO?

reactFLO é uma extensão do Chrome desenvolvida por reactflo, e sua principal característica é "A dev tool that helps developers visualize the flow of state through their React app".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão reactFLO

Baixe arquivos de extensão reactFLO no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
URL Oficial https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Descrição A dev tool that helps developers visualize the flow of state through their React app
Tamanho do Arquivo 5.17 MB
Contagem de Instalações 30
Versão Atual 1.0
Última Atualização 2020-05-31
Data de Publicação 2020-05-31
Desenvolvedor reactflo
Tipo de Pagamento free
Idiomas Suportados 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
}