React ChronoScope

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

Hvad er React ChronoScope?

React ChronoScope er en Chrome-udvidelse udviklet af reactchronoscope, og dens hovedfunktion er "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Udvidelsesskærmbilleder

screenshot
screenshot

Download React ChronoScope-udvidelses-CRX-fil

Download React ChronoScope-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Officiel URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Beskrivelse React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Filstørrelse 1.91 MB
Antal Installationer 37
Nuværende Version 1.0.0
Senest Opdateret 2020-03-06
Udgivelsesdato 2020-03-06
Udvikler reactchronoscope
Betalingsmetode free
Understøttede Sprog 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'"
}