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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}