reactFLO

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

Hvad er reactFLO?

reactFLO er en Chrome-udvidelse udviklet af reactflo, og dens hovedfunktion er "A dev tool that helps developers visualize the flow of state through their React app".

Udvidelsesskærmbilleder

screenshot

Download reactFLO-udvidelses-CRX-fil

Download reactFLO-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Officiel URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Beskrivelse A dev tool that helps developers visualize the flow of state through their React app
Filstørrelse 5.17 MB
Antal Installationer 30
Nuværende Version 1.0
Senest Opdateret 2020-05-31
Udgivelsesdato 2020-05-31
Udvikler reactflo
Betalingsmetode free
Understøttede Sprog 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
}