React ChronoScope

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

什么是React ChronoScope?

React ChronoScope是由reactchronoscope开发的Chrome扩展程序,该扩展的主要功能是“React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…”。

扩展截图

screenshot
screenshot

下载React ChronoScope扩展crx文件

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