Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Apollo Client Devtools là gì?

Apollo Client Devtools là một tiện ích mở rộng Chrome được phát triển bởi https://www.apollographql.com, và tính năng chính của nó là "GraphQL debugging tools for Apollo Client.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Apollo Client Devtools

Tải xuống các tệp mở rộng Apollo Client Devtools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Apollo Client Devtools Apollo Client Devtools
ID jdkknkkbebbapilgoeccciglkfbmbnfm
URL Chính Thức https://chromewebstore.google.com/detail/apollo-client-devtools/jdkknkkbebbapilgoeccciglkfbmbnfm
Mô tả GraphQL debugging tools for Apollo Client.
Kích Thước Tệp 403 KB
Số Lần Cài Đặt 224,498
Phiên Bản Hiện Tại 4.7.0
Cập Nhật Lần Cuối 2024-02-21
Ngày Phát Hành 2020-06-02
Đánh Giá 2.60/5 Tổng số 265 Đánh Giá
Nhà Phát Triển https://www.apollographql.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.apollographql.com
URL Trang Trợ Giúp https://github.com/apollographql/apollo-client-devtools
URL Trang Chính Sách Bảo Mật https://www.apollographql.com/Apollo-Privacy-Policy.pdf
Ngôn Ngữ Được Hỗ Trợ 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
}