Realize for React

A React component tree visualizer

ما هو Realize for React؟

Realize for React هو إضافة Chrome تم تطويرها بواسطة Realize for React، والميزة الرئيسية لها هي "A React component tree visualizer".

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

screenshot

تحميل ملف CRX للإضافة Realize for React

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

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

                        As React applications scale, it becomes more difficult to track state and to have a holistic overview of the component hierarchy. Realize is a tool to help developers visualize the structure and state flow of their React applications, especially when they are growing in scale and complexity. It currently supports React v.16.8.

Prerequisites
1. You must have React Dev Tools installed to use Realize for React. Install it from the Chrome store
2. Realize is best used on non-deployed applications. This uglification of deployed websites makes the component structure pretty unreadable.

How to use
1. Click the blue 'Add to Chrome' button
2. Once installed, navigate to your React website
3. Open the dev tools window and click on the Realize panel
4. Trigger a state change to populate the component tree

Functionality:
- Utilize the search bar to search for any component that exists in the tree.
- Clicking a node component will display information about state, children, props, and hooks in the right hand panel.
- You can zoom and pan the tree by holding shift and dragging/scrolling
- Click the 'State' button to view the flow of state through the component tree                    

معلومات أساسية عن التمديد

الاسم Realize for React Realize for React
ID llondniabnmnappjekpflmgcikaiilmh
عنوان URL الرسمي https://chromewebstore.google.com/detail/realize-for-react/llondniabnmnappjekpflmgcikaiilmh
الوصف A React component tree visualizer
حجم الملف 160 KB
عدد التثبيتات 5,086
النسخة الحالية 1.0.0.0
آخر تحديث 2020-06-20
تاريخ النشر 2020-06-20
تقييم 1.88/5 مجموع تقييمات 8
المطور Realize for React
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.realizeforreact.com
عنوان صفحة المساعدة http://www.realizeforreact.com
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Realize for React",
    "version": "1.0.0.0",
    "description": "A React component tree visualizer",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "hook.js"
    ],
    "devtools_page": "devtools-root.html"
}