Relay DevTools

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

What is Relay DevTools?

Relay DevTools is a Chrome extension developed by leebyron, and its main feature is "Developer Tools extension to inspect Relay store and how it changes.".

Extension Screenshots

screenshot
screenshot

Download Relay DevTools Extension CRX File

Download Relay DevTools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Relay DevTools Relay DevTools
ID oppikflppfjfdpjimpdadhelffjpciba
Official URL https://chromewebstore.google.com/detail/relay-devtools/oppikflppfjfdpjimpdadhelffjpciba
Description Developer Tools extension to inspect Relay store and how it changes.
File Size 933 KB
Installation Count 2,040
Current Version 1.4.0
Last Updated 2017-09-28
Publish Date 2017-09-28
Rating 3.00/5 Total 6 Ratings
Developer leebyron
Email [email protected]
Payment Type free
Extension Website https://github.com/facebook/relay/
Help Page URL https://facebook.github.io/relay/docs/relay-debugging.html
Supported Languages 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"
        }
    ]
}