GraphQL Network Inspector

Simple and clean network inspector for GraphQL

GraphQL Network Inspector란 무엇입니까?

GraphQL Network Inspector은(는) warrenjday에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple and clean network inspector for GraphQL"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

GraphQL Network Inspector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A platform agnostic network inspector specifically built for GraphQL. Clearly see individual GraphQL requests including support for query batching. Works with any client including Apollo and Relay.

2.19.2
Big fix on searching with regex
Added newsletter

2.19.1
Improvements to websocket parsing and ui

2.19.0
Jump to search results

2.18.0
Initial support for Subscriptions (Beta) only via websockets.

2.17.1
Replay requests with graphdev.app integration                    

확장 프로그램 기본 정보

이름 GraphQL Network Inspector GraphQL Network Inspector
ID ndlbedplllcgconngcnfmkadhokfaaln
공식 URL https://chromewebstore.google.com/detail/graphql-network-inspector/ndlbedplllcgconngcnfmkadhokfaaln
설명 Simple and clean network inspector for GraphQL
파일 크기 1.45 MB
설치 횟수 80,990
현재 버전 2.19.2
최근 업데이트 2024-02-21
출시 날짜 2020-09-24
평점 4.92/5 총 96 개의 평점
개발자 warrenjday
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/warrenday/graphql-network-inspector
도움말 페이지 URL https://github.com/warrenday/graphql-network-inspector
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GraphQL Network Inspector",
    "version": "2.19.2",
    "description": "Simple and clean network inspector for GraphQL",
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "permissions": [],
    "devtools_page": "devtools\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.graphdev.app\/draft?*"
            ],
            "js": [
                "contentScript_export.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}