React ChronoScope

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

Co to jest React ChronoScope?

React ChronoScope to rozszerzenie Chrome opracowane przez reactchronoscope, a jego główną funkcją jest „React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia React ChronoScope

Pobierz pliki rozszerzeń React ChronoScope w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Oficjalny URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Opis React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Rozmiar pliku 1.91 MB
Liczba instalacji 37
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-03-06
Data Publikacji 2020-03-06
Deweloper reactchronoscope
Typ Płatności free
Obsługiwane Języki 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'"
}