Relay Developer Tools

Adds Relay debugging tools to the Chrome Developer Tools.

什麼是Relay Developer Tools?

Relay Developer Tools是由Meta開發的Chrome擴展程式,該擴展的主要功能是“Adds Relay debugging tools to the Chrome Developer Tools.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Relay Developer Tools擴展crx文件

下載Relay Developer Tools擴展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.                    

擴展基本資訊

名稱 Relay Developer Tools Relay Developer Tools
ID ncedobpgnmkhcmnnkcimnobpfepidadl
官方網址 https://chromewebstore.google.com/detail/relay-developer-tools/ncedobpgnmkhcmnnkcimnobpfepidadl
簡介 Adds Relay debugging tools to the Chrome Developer Tools.
檔案大小 106 KB
安裝次數 5,689
目前版本 1737e3f483db+ (8/3/2021)
更新時間 2021-08-03
上架時間 2020-03-17
評分 5.00/5 共 6 次評分
開發者 Meta
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/relayjs/relay-devtools
說明頁面URL https://github.com/relayjs/relay-devtools
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relay Developer Tools",
    "description": "Adds Relay debugging tools to the Chrome Developer Tools.",
    "version": "0.9.14",
    "version_name": "1737e3f483db+ (8\/3\/2021)",
    "minimum_chrome_version": "78",
    "icons": {
        "16": "icons\/enabled16.png",
        "32": "icons\/enabled32.png",
        "48": "icons\/enabled48.png",
        "128": "icons\/enabled128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/disabled16.png",
            "32": "icons\/disabled32.png",
            "48": "icons\/disabled48.png",
            "128": "icons\/disabled128.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js",
        "build\/renderer.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/injectGlobalHook.js"
            ],
            "run_at": "document_start"
        }
    ]
}