reactFLO

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

Was ist reactFLO?

reactFLO ist eine Chrome-Erweiterung, die von reactflo entwickelt wurde, und ihr Hauptmerkmal ist "A dev tool that helps developers visualize the flow of state through their React app".

Erweiterungsscreenshots

screenshot

reactFLO-Erweiterungs-CRX-Datei herunterladen

Laden Sie reactFLO-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Offizielle URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Beschreibung A dev tool that helps developers visualize the flow of state through their React app
Dateigröße 5.17 MB
Installationsanzahl 30
Aktuelle Version 1.0
Letztes Update 2020-05-31
Veröffentlichungsdatum 2020-05-31
Entwickler reactflo
Zahlungsart free
Unterstützte Sprachen 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
}