React ChronoScope

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

Что такое React ChronoScope?

React ChronoScope - это расширение Chrome, разработанное reactchronoscope, и его основная функция - "React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения React ChronoScope

Скачайте файлы расширений React ChronoScope в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название React ChronoScope React ChronoScope
ID haeiefchakokoggcngggkfbgklaifbbm
Официальный URL https://chromewebstore.google.com/detail/react-chronoscope/haeiefchakokoggcngggkfbgklaifbbm
Описание React ChronoScope is a performance monitoring tool for React developers. It visualizes React application's components displaying…
Размер файла 1.91 MB
Количество установок 37
Текущая Версия 1.0.0
Последнее Обновление 2020-03-06
Дата публикации 2020-03-06
Разработчик reactchronoscope
Тип оплаты free
Поддерживаемые языки 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'"
}