Relay DevTools

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

什么是Relay DevTools?

Relay DevTools是由leebyron开发的Chrome扩展程序,该扩展的主要功能是“Developer Tools extension to inspect Relay store and how it changes.”。

扩展截图

screenshot
screenshot

下载Relay DevTools扩展crx文件

下载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"
        }
    ]
}