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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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:\/\/*\/*"
    ]
}