GraphQL Network Inspector

Simple and clean network inspector for GraphQL

Qu'est-ce que GraphQL Network Inspector ?

GraphQL Network Inspector est une extension Chrome développée par warrenjday, et sa fonction principale est "Simple and clean network inspector for GraphQL".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GraphQL Network Inspector

Téléchargez les fichiers d'extension GraphQL Network Inspector 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

                        A platform agnostic network inspector specifically built for GraphQL. Clearly see individual GraphQL requests including support for query batching. Works with any client including Apollo and Relay.

2.19.2
Big fix on searching with regex
Added newsletter

2.19.1
Improvements to websocket parsing and ui

2.19.0
Jump to search results

2.18.0
Initial support for Subscriptions (Beta) only via websockets.

2.17.1
Replay requests with graphdev.app integration                    

Informations de Base sur l'Extension

Nom GraphQL Network Inspector GraphQL Network Inspector
ID ndlbedplllcgconngcnfmkadhokfaaln
URL Officiel https://chromewebstore.google.com/detail/graphql-network-inspector/ndlbedplllcgconngcnfmkadhokfaaln
Description Simple and clean network inspector for GraphQL
Taille du Fichier 1.45 MB
Nombre d'Installations 80,990
Version Actuelle 2.19.2
Dernière Mise à Jour 2024-02-21
Date de Publication 2020-09-24
Évaluation 4.92/5 Total 96 Évaluations
Développeur warrenjday
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/warrenday/graphql-network-inspector
URL de la Page d'Aide https://github.com/warrenday/graphql-network-inspector
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GraphQL Network Inspector",
    "version": "2.19.2",
    "description": "Simple and clean network inspector for GraphQL",
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "permissions": [],
    "devtools_page": "devtools\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.graphdev.app\/draft?*"
            ],
            "js": [
                "contentScript_export.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}