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
Eメール [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"
        }
    ]
}