React Fetch Tree

Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser

ما هو React Fetch Tree؟

React Fetch Tree هو إضافة Chrome تم تطويرها بواسطة reactfetchtree، والميزة الرئيسية لها هي "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة React Fetch Tree

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

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

                        React Fetch Tree provides a visualization of the component tree which shows the layout and hierarchy of React apps with all their components.                    

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

الاسم React Fetch Tree React Fetch Tree
ID pfcfmbpfgfnlhfbccgddiilfdmdlhdom
عنوان URL الرسمي https://chromewebstore.google.com/detail/react-fetch-tree/pfcfmbpfgfnlhfbccgddiilfdmdlhdom
الوصف Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser
حجم الملف 548 KB
عدد التثبيتات 94
النسخة الحالية 1.0
آخر تحديث 2021-04-17
تاريخ النشر 2021-04-16
المطور reactfetchtree
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.reactfetchtree.com
عنوان صفحة المساعدة https://github.com/oslabs-beta/react-fetch-tree
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React Fetch Tree",
    "description": "Interface to present data compiled from client codebase in development mode, using react devtool functions and babel parser",
    "version": "1.0",
    "browser_action": {
        "default_icon": "Logo.png"
    },
    "icons": {
        "128": "Logo.png",
        "16": "Logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "injectScript.js",
        "images\/*"
    ],
    "devtools_page": "devtools.html"
}