Apollo Client Devtools

GraphQL debugging tools for Apollo Client.

Cos'è Apollo Client Devtools?

Apollo Client Devtools è un'estensione di Chrome sviluppata da https://www.apollographql.com, e la sua funzione principale è "GraphQL debugging tools for Apollo Client.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Apollo Client Devtools

Scarica i file di estensione Apollo Client Devtools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Apollo Client Devtools Apollo Client Devtools
ID jdkknkkbebbapilgoeccciglkfbmbnfm
URL Ufficiale https://chromewebstore.google.com/detail/apollo-client-devtools/jdkknkkbebbapilgoeccciglkfbmbnfm
Descrizione GraphQL debugging tools for Apollo Client.
Dimensione del File 403 KB
Conteggio Installazioni 224,498
Versione Corrente 4.7.0
Ultimo Aggiornamento 2024-02-21
Data di Pubblicazione 2020-06-02
Valutazione 2.60/5 Totale 265 Valutazioni
Sviluppatore https://www.apollographql.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.apollographql.com
URL della Pagina di Aiuto https://github.com/apollographql/apollo-client-devtools
URL della Pagina della Politica sulla Privacy https://www.apollographql.com/Apollo-Privacy-Policy.pdf
Lingue Supportate 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
}