reactFLO

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

Co je reactFLO?

reactFLO je rozšíření Chrome vyvinuté reactflo, a jeho hlavní funkcí je „A dev tool that helps developers visualize the flow of state through their React app“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření reactFLO

Stáhněte si soubory rozšíření reactFLO ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Oficiální URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Popis A dev tool that helps developers visualize the flow of state through their React app
Velikost souboru 5.17 MB
Počet instalací 30
Aktuální Verze 1.0
Poslední Aktualizace 2020-05-31
Datum Vydání 2020-05-31
Vývojář reactflo
Typ Platby free
Podporované Jazyky 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
}