GraphQL Network Inspector
Simple and clean network inspector for GraphQL
What is GraphQL Network Inspector?
GraphQL Network Inspector is a Chrome extension developed by warrenjday, and its main feature is "Simple and clean network inspector for GraphQL".
Extension Screenshots
Download GraphQL Network Inspector Extension CRX File
Download GraphQL Network Inspector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GraphQL Network Inspector |
ID | ndlbedplllcgconngcnfmkadhokfaaln |
Official URL | https://chromewebstore.google.com/detail/graphql-network-inspector/ndlbedplllcgconngcnfmkadhokfaaln |
Description | Simple and clean network inspector for GraphQL |
File Size | 1.45 MB |
Installation Count | 80,990 |
Current Version | 2.19.2 |
Last Updated | 2024-02-21 |
Publish Date | 2020-09-24 |
Rating | 4.92/5 Total 96 Ratings |
Developer | warrenjday |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/warrenday/graphql-network-inspector |
Help Page URL | https://github.com/warrenday/graphql-network-inspector |
Supported Languages | 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" } } |