React ChronoScope

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

React ChronoScope là gì?

React ChronoScope là một tiện ích mở rộng Chrome được phát triển bởi reactchronoscope, và tính năng chính của nó là "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng React ChronoScope

Tải xuống các tệp mở rộng React ChronoScope dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
URL Chính Thức https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Mô tả React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Kích Thước Tệp 1.91 MB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-03-06
Ngày Phát Hành 2020-03-06
Nhà Phát Triển reactchronoscope
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}