Relay DevTools

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

Cos'è Relay DevTools?

Relay DevTools è un'estensione di Chrome sviluppata da leebyron, e la sua funzione principale è "Developer Tools extension to inspect Relay store and how it changes.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Relay DevTools

Scarica i file di estensione Relay DevTools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Relay DevTools Relay DevTools
ID oppikflppfjfdpjimpdadhelffjpciba
URL Ufficiale https://chromewebstore.google.com/detail/relay-devtools/oppikflppfjfdpjimpdadhelffjpciba
Descrizione Developer Tools extension to inspect Relay store and how it changes.
Dimensione del File 933 KB
Conteggio Installazioni 2,040
Versione Corrente 1.4.0
Ultimo Aggiornamento 2017-09-28
Data di Pubblicazione 2017-09-28
Valutazione 3.00/5 Totale 6 Valutazioni
Sviluppatore leebyron
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/facebook/relay/
URL della Pagina di Aiuto https://facebook.github.io/relay/docs/relay-debugging.html
Lingue Supportate 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"
        }
    ]
}