reactFLO

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

什么是reactFLO?

reactFLO是由reactflo开发的Chrome扩展程序,该扩展的主要功能是“A dev tool that helps developers visualize the flow of state through their React app”。

扩展截图

screenshot

下载reactFLO扩展crx文件

下载reactFLO扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 reactFLO reactFLO
ID dcfgjebpfnpkeanpdingcfgcdjbkplim
官方URL https://chromewebstore.google.com/detail/reactflo/dcfgjebpfnpkeanpdingcfgcdjbkplim
简介 A dev tool that helps developers visualize the flow of state through their React app
文件大小 5.17 MB
安装次数 30
当前版本 1.0
更新时间 2020-05-31
上架时间 2020-05-31
开发者 reactflo
付费类型 free
支持的语言 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
}