Relay DevTools

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

Apa itu Relay DevTools?

Relay DevTools adalah ekstensi Chrome yang dikembangkan oleh leebyron, dan fitur utamanya adalah "Developer Tools extension to inspect Relay store and how it changes.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Relay DevTools

Unduh file ekstensi Relay DevTools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Relay DevTools Relay DevTools
ID oppikflppfjfdpjimpdadhelffjpciba
URL Resmi https://chromewebstore.google.com/detail/relay-devtools/oppikflppfjfdpjimpdadhelffjpciba
Deskripsi Developer Tools extension to inspect Relay store and how it changes.
Ukuran File 933 KB
Jumlah Instalasi 2,040
Versi Saat Ini 1.4.0
Terakhir Diperbarui 2017-09-28
Tanggal Publikasi 2017-09-28
Penilaian 3.00/5 Total 6 Penilaian
Pengembang leebyron
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/facebook/relay/
URL Halaman Bantuan https://facebook.github.io/relay/docs/relay-debugging.html
Bahasa yang Didukung 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"
        }
    ]
}