Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Apollo Client Devtools란 무엇입니까?

Apollo Client Devtools은(는) https://www.apollographql.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GraphQL debugging tools for Apollo Client."입니다.

확장 프로그램 스크린샷

screenshot

Apollo Client Devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Apollo Client Devtools is a Chrome extension for the open-source GraphQL client, Apollo Client. This extension has 4 main features:

1. A built-in version of the Apollo Studio Explorer that allows you to make queries against your GraphQL server using your app's network interface directly (no configuration necessary).

2. A query watcher that shows you which queries are being watched by the current page, when those queries are loading, and what variables those queries are using.

3. A mutation inspector that displays the mutations made to your Apollo Client application data.

4. A cache inspector that displays your Apollo Client cache data. You can explore the cache through a tree-like interface, and search for specific field keys and values.

Code for this extension can be found at: https://github.com/apollographql/apollo-client-devtools

Any bugs can be reported by opening a new issue at: https://github.com/apollographql/apollo-client-devtools/issues/new

To learn more about Apollo, see: https://www.apollographql.com                    

확장 프로그램 기본 정보

이름 Apollo Client Devtools Apollo Client Devtools
ID jdkknkkbebbapilgoeccciglkfbmbnfm
공식 URL https://chromewebstore.google.com/detail/apollo-client-devtools/jdkknkkbebbapilgoeccciglkfbmbnfm
설명 GraphQL debugging tools for Apollo Client.
파일 크기 403 KB
설치 횟수 224,498
현재 버전 4.7.0
최근 업데이트 2024-02-21
출시 날짜 2020-06-02
평점 2.60/5 총 265 개의 평점
개발자 https://www.apollographql.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.apollographql.com
도움말 페이지 URL https://github.com/apollographql/apollo-client-devtools
개인정보 보호 정책 페이지 URL https://www.apollographql.com/Apollo-Privacy-Policy.pdf
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.7.0",
    "author": "Apollo",
    "name": "Apollo Client Devtools",
    "description": "GraphQL debugging tools for Apollo Client.",
    "icons": {
        "64": "images\/logo64.png",
        "128": "images\/logo128.png",
        "400": "images\/logo400.png"
    },
    "page_action": [],
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "service_worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "panel.html",
                "devtools.html",
                "hook.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tab.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3
}