Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Apollo Client Devtools क्या है?

Apollo Client Devtools https://www.apollographql.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "GraphQL debugging tools for Apollo Client."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Apollo Client Devtools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}