React ChronoScope

React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…

ما هو React ChronoScope؟

React ChronoScope هو إضافة Chrome تم تطويرها بواسطة reactchronoscope، والميزة الرئيسية لها هي "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

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

screenshot
screenshot

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

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

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

                        React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying components that require further optimization.

React ChronoScope parses through the React application to construct an interactive tree diagram of the component hierarchy.                    

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

الاسم React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
الوصف React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
حجم الملف 1.91 MB
عدد التثبيتات 37
النسخة الحالية 1.0.0
آخر تحديث 2020-03-06
تاريخ النشر 2020-03-06
المطور reactchronoscope
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React ChronoScope",
    "version": "1.0.0",
    "devtools_page": "devtools.html",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "backgroundscript.js"
        ],
        "persistant": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "icons": {
        "16": ".\/assets\/ChronoScope.png",
        "48": ".\/assets\/ChronoScope.png",
        "128": ".\/assets\/ChronoScope.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}