React ChronoScope

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

Vad är React ChronoScope?

React ChronoScope är en Chrome-tillägg utvecklad av reactchronoscope, och dess huvudfunktion är "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner React ChronoScope-förlängningens CRX-fil

Ladda ner React ChronoScope-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Officiell webbadress https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Beskrivning React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Filstorlek 1.91 MB
Antal Installationer 37
Aktuell Version 1.0.0
Senast Uppdaterad 2020-03-06
Publiceringsdatum 2020-03-06
Utvecklare reactchronoscope
Betalningssätt free
Stödda Språk 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'"
}