React ChronoScope

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

Was ist React ChronoScope?

React ChronoScope ist eine Chrome-Erweiterung, die von reactchronoscope entwickelt wurde, und ihr Hauptmerkmal ist "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Erweiterungsscreenshots

screenshot
screenshot

React ChronoScope-Erweiterungs-CRX-Datei herunterladen

Laden Sie React ChronoScope-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Offizielle URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Beschreibung React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Dateigröße 1.91 MB
Installationsanzahl 37
Aktuelle Version 1.0.0
Letztes Update 2020-03-06
Veröffentlichungsdatum 2020-03-06
Entwickler reactchronoscope
Zahlungsart free
Unterstützte Sprachen 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'"
}