reactFLO

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

Wat is reactFLO?

reactFLO is een Chrome-extensie ontwikkeld door reactflo, en de belangrijkste functie is "A dev tool that helps developers visualize the flow of state through their React app".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie reactFLO

Download reactFLO-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Officiële URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Beschrijving A dev tool that helps developers visualize the flow of state through their React app
Bestandsgrootte 5.17 MB
Aantal Installaties 30
Huidige Versie 1.0
Laatst Bijgewerkt 2020-05-31
Publicatiedatum 2020-05-31
Ontwikkelaar reactflo
Betalingswijze free
Ondersteunde Talen 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
}