Relay DevTools

Developer Tools extension to inspect Relay store and how it changes.

Relay DevToolsคืออะไร?

Relay DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย leebyron และคุณลักษณะหลักของมันคือ "Developer Tools extension to inspect Relay store and how it changes."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Relay DevTools

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

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

                        Inspect data in the store of your Relay apps, and how that data changes over time in response to GraphQL queries, and client mutations.

Note: Requires use of Relay Modern v1.4.0 or higher.                    

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

ชื่อ Relay DevTools Relay DevTools
ID oppikflppfjfdpjimpdadhelffjpciba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/relay-devtools/oppikflppfjfdpjimpdadhelffjpciba
คำอธิบาย Developer Tools extension to inspect Relay store and how it changes.
ขนาดไฟล์ 933 KB
จำนวนการติดตั้ง 2,040
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2017-09-28
วันที่เผยแพร่ 2017-09-28
คะแนน 3.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา leebyron
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/facebook/relay/
URL หน้าช่วยเหลือ https://facebook.github.io/relay/docs/relay-debugging.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relay DevTools",
    "version": "1.4.0",
    "short_name": "Relay DevTools",
    "description": "Developer Tools extension to inspect Relay store and how it changes.",
    "icons": {
        "16": "imgs\/logo.png",
        "48": "imgs\/logo.png",
        "128": "imgs\/logo.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "devtools_page": "devtoolsMain.html",
    "web_accessible_resources": [
        "globalHook.js",
        "backendAgent.js"
    ],
    "background": {
        "scripts": [
            "backgroundMessageBus.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injectGlobalHook.js"
            ],
            "run_at": "document_start"
        }
    ]
}