reactFLO

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

ما هو reactFLO؟

reactFLO هو إضافة Chrome تم تطويرها بواسطة reactflo، والميزة الرئيسية لها هي "A dev tool that helps developers visualize the flow of state through their React app".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة reactFLO

قم بتنزيل ملفات الامتداد reactFLO بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}