reactFLO

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

Co to jest reactFLO?

reactFLO to rozszerzenie Chrome opracowane przez reactflo, a jego główną funkcją jest „A dev tool that helps developers visualize the flow of state through their React app”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia reactFLO

Pobierz pliki rozszerzeń reactFLO w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
Oficjalny URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Opis A dev tool that helps developers visualize the flow of state through their React app
Rozmiar pliku 5.17 MB
Liczba instalacji 30
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-05-31
Data Publikacji 2020-05-31
Deweloper reactflo
Typ Płatności free
Obsługiwane Języki 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
}