Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Что такое Redux custom dev tool?

Redux custom dev tool - это расширение Chrome, разработанное lorenzo.colarieti, и его основная функция - "Redux custom tool allow you to see all the dispatched actions".

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

screenshot

Скачать файл CRX расширения Redux custom dev tool

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

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

                        Tracking the actions of Redux. Fast and reliable                    

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

Название Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Официальный URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Описание Redux custom tool allow you to see all the dispatched actions
Размер файла 1.16 MB
Количество установок 141
Текущая Версия 0.0.1
Последнее Обновление 2022-03-30
Дата публикации 2022-03-29
Разработчик lorenzo.colarieti
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redux custom dev tool",
    "description": "Redux custom tool allow you to see all the dispatched actions",
    "version": "0.0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}