React ChronoScope

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

Wat is React ChronoScope?

React ChronoScope is een Chrome-extensie ontwikkeld door reactchronoscope, en de belangrijkste functie is "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie React ChronoScope

Download React ChronoScope-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Officiële URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Beschrijving React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Bestandsgrootte 1.91 MB
Aantal Installaties 37
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-03-06
Publicatiedatum 2020-03-06
Ontwikkelaar reactchronoscope
Betalingswijze free
Ondersteunde Talen 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'"
}