Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Qu'est-ce que Apollo Client Devtools ?

Apollo Client Devtools est une extension Chrome développée par https://www.apollographql.com, et sa fonction principale est "GraphQL debugging tools for Apollo Client.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Apollo Client Devtools

Téléchargez les fichiers d'extension Apollo Client Devtools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Apollo Client Devtools Apollo Client Devtools
ID jdkknkkbebbapilgoeccciglkfbmbnfm
URL Officiel https://chromewebstore.google.com/detail/apollo-client-devtools/jdkknkkbebbapilgoeccciglkfbmbnfm
Description GraphQL debugging tools for Apollo Client.
Taille du Fichier 403 KB
Nombre d'Installations 224,498
Version Actuelle 4.7.0
Dernière Mise à Jour 2024-02-21
Date de Publication 2020-06-02
Évaluation 2.60/5 Total 265 Évaluations
Développeur https://www.apollographql.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.apollographql.com
URL de la Page d'Aide https://github.com/apollographql/apollo-client-devtools
URL de la Page de Politique de Confidentialité https://www.apollographql.com/Apollo-Privacy-Policy.pdf
Langues Prises en Charge 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
}