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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    ]
}