React ChronoScope

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

Co je React ChronoScope?

React ChronoScope je rozšíření Chrome vyvinuté reactchronoscope, a jeho hlavní funkcí je „React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření React ChronoScope

Stáhněte si soubory rozšíření React ChronoScope ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Oficiální URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Popis React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Velikost souboru 1.91 MB
Počet instalací 37
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-03-06
Datum Vydání 2020-03-06
Vývojář reactchronoscope
Typ Platby free
Podporované Jazyky 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'"
}