React Stores Devtools Extension

Better experience for debug your react stores with chrome devtools extension

React Stores Devtools Extensionคืออะไร?

React Stores Devtools Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย konstantin24121 และคุณลักษณะหลักของมันคือ "Better experience for debug your react stores with chrome devtools extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย React Stores Devtools Extension

ดาวน์โหลดไฟล์ส่วนขยาย React Stores Devtools Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Debug your react stores with chrome devtools extension.

- 🔍 Inspect stores current state
- 📜 Check store history step-by-step
- 🔬 Compare diff between states
- 📨 Dispatch state directly from devtools
- 🍔 Clickable stack trace for history and listners
- 🚀 Use in production build
- 📦 Works with isolated stores
- 🎨 Familiar native chrome themes                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ React Stores Devtools Extension React Stores Devtools Extension
ID jofikieipejiceaccabdhlbedbfhogkm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/react-stores-devtools-ext/jofikieipejiceaccabdhlbedbfhogkm
คำอธิบาย Better experience for debug your react stores with chrome devtools extension
ขนาดไฟล์ 716 KB
จำนวนการติดตั้ง 1,897
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-03-05
วันที่เผยแพร่ 2020-03-04
ผู้พัฒนา konstantin24121
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ibitcy.github.io/react-stores/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "React Stores Devtools Extension",
    "version": "1.0.0",
    "description": "Better experience for debug your react stores with chrome devtools extension",
    "short_name": "React Stores Inspector",
    "devtools_page": "main.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "connect.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "connect.js"
    ],
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}