reactFLO

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

Vad är reactFLO?

reactFLO är en Chrome-tillägg utvecklad av reactflo, och dess huvudfunktion är "A dev tool that helps developers visualize the flow of state through their React app".

Tilläggsskärmbilder

screenshot

Ladda ner reactFLO-förlängningens CRX-fil

Ladda ner reactFLO-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Officiell webbadress https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Beskrivning A dev tool that helps developers visualize the flow of state through their React app
Filstorlek 5.17 MB
Antal Installationer 30
Aktuell Version 1.0
Senast Uppdaterad 2020-05-31
Publiceringsdatum 2020-05-31
Utvecklare reactflo
Betalningssätt free
Stödda Språk 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
}