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