reactFLO

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

¿Qué es reactFLO?

reactFLO es una extensión de Chrome desarrollada por reactflo, y su función principal es "A dev tool that helps developers visualize the flow of state through their React app".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión reactFLO

Descarga archivos de extensión reactFLO en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
URL Oficial https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Descripción A dev tool that helps developers visualize the flow of state through their React app
Tamaño del Archivo 5.17 MB
Cantidad de Instalaciones 30
Versión Actual 1.0
Última Actualización 2020-05-31
Fecha de Publicación 2020-05-31
Desarrollador reactflo
Tipo de Pago free
Idiomas Soportados 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
}