React Context DevTool

Devtool for React Context and useReducer

Что такое React Context DevTool?

React Context DevTool - это расширение Chrome, разработанное Deep Patel, и его основная функция - "Devtool for React Context and useReducer".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        React Context DevTool is debugging tool for React Context and useReducer API.

You can easily show context values changes in different views like tree, raw and diff view.
Now Devtool suppoer useReducer API. easily debug your state changes and dispatch actions from devtool.

React Context DevTool is open source project 
https://github.com/deeppatel234/react-context-devtool                    

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

Название React Context DevTool React Context DevTool
ID oddhnidmicpefilikhgeagedibnefkcf
Официальный URL https://chromewebstore.google.com/detail/react-context-devtool/oddhnidmicpefilikhgeagedibnefkcf
Описание Devtool for React Context and useReducer
Размер файла 2.36 MB
Количество установок 48,091
Текущая Версия 3.6
Последнее Обновление 2023-12-29
Дата публикации 2020-07-02
Рейтинг 4.79/5 Всего 19 оценок
Разработчик Deep Patel
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "React Context DevTool",
    "version": "3.6",
    "description": "Devtool for React Context and useReducer",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/icon16-disabled.png",
            "32": "assets\/icons\/icon32-disabled.png",
            "48": "assets\/icons\/icon48-disabled.png",
            "128": "assets\/icons\/icon128-disabled.png"
        },
        "default_popup": "popup\/disabled.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "devtools_page": "devtool\/devtool.html",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injectGlobalHook.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "react-context-devtool-helper.js"
    ]
}