React ChronoScope

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

Cos'è React ChronoScope?

React ChronoScope è un'estensione di Chrome sviluppata da reactchronoscope, e la sua funzione principale è "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione React ChronoScope

Scarica i file di estensione React ChronoScope in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
URL Ufficiale https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Descrizione React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Dimensione del File 1.91 MB
Conteggio Installazioni 37
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-03-06
Data di Pubblicazione 2020-03-06
Sviluppatore reactchronoscope
Tipo di Pagamento free
Lingue Supportate 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'"
}