Teaful DevTools

Teaful DevTools is for debugging application's state changes using Teaful as React state management

ما هو Teaful DevTools؟

Teaful DevTools هو إضافة Chrome تم تطويرها بواسطة Aral Roca، والميزة الرئيسية لها هي "Teaful DevTools is for debugging application's state changes using Teaful as React state management".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Teaful DevTools

قم بتنزيل ملفات الامتداد Teaful DevTools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Debug the Teaful stores using Teaful DevTools. Teaful is a tiny, easy and powerful React state management

Historial of changes:
- What and where changed (diff)
- Who, how and why changed (stack trace)
- Add a store modification from Teaful Devtools and see how the UI reacts.                    

معلومات أساسية عن التمديد

الاسم Teaful DevTools Teaful DevTools
ID lficdnnjoackdnaddfcgllmjdocofadc
عنوان URL الرسمي https://chromewebstore.google.com/detail/teaful-devtools/lficdnnjoackdnaddfcgllmjdocofadc
الوصف Teaful DevTools is for debugging application's state changes using Teaful as React state management
حجم الملف 624 KB
عدد التثبيتات 28
النسخة الحالية 0.1.0
آخر تحديث 2021-12-02
تاريخ النشر 2021-12-01
تقييم 5.00/5 مجموع تقييمات 1
المطور Aral Roca
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/teafuljs/teaful-devtools
عنوان صفحة المساعدة https://github.com/teafuljs/teaful-devtools
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "author": "Aral Roca",
    "name": "Teaful DevTools",
    "short_name": "Teaful DevTools",
    "description": "Teaful DevTools is for debugging application's state changes using Teaful as React state management",
    "homepage_url": "https:\/\/github.com\/teafuljs\/teaful-devtools",
    "manifest_version": 2,
    "icons": {
        "16": "img\/logo_16x16.png",
        "48": "img\/logo_48x48.png",
        "128": "img\/logo_128x128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}