reactFLO

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

Apa itu reactFLO?

reactFLO adalah ekstensi Chrome yang dikembangkan oleh reactflo, dan fitur utamanya adalah "A dev tool that helps developers visualize the flow of state through their React app".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi reactFLO

Unduh file ekstensi reactFLO dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
URL Resmi https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
Deskripsi A dev tool that helps developers visualize the flow of state through their React app
Ukuran File 5.17 MB
Jumlah Instalasi 30
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-05-31
Tanggal Publikasi 2020-05-31
Pengembang reactflo
Tipe Pembayaran free
Bahasa yang Didukung 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
}