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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}