reactFLO

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

Qu'est-ce que reactFLO ?

reactFLO est une extension Chrome développée par reactflo, et sa fonction principale est "A dev tool that helps developers visualize the flow of state through their React app".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension reactFLO

Téléchargez les fichiers d'extension reactFLO au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
URL Officiel https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Description A dev tool that helps developers visualize the flow of state through their React app
Taille du Fichier 5.17 MB
Nombre d'Installations 30
Version Actuelle 1.0
Dernière Mise à Jour 2020-05-31
Date de Publication 2020-05-31
Développeur reactflo
Type de Paiement free
Langues Prises en Charge 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
}