reactFLO

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

What is reactFLO?

reactFLO is a Chrome extension developed by reactflo, and its main feature is "A dev tool that helps developers visualize the flow of state through their React app".

Extension Screenshots

screenshot

Download reactFLO Extension CRX File

Download reactFLO extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Official URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Description A dev tool that helps developers visualize the flow of state through their React app
File Size 5.17 MB
Installation Count 30
Current Version 1.0
Last Updated 2020-05-31
Publish Date 2020-05-31
Developer reactflo
Payment Type free
Supported Languages 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
}