A Chrome DevTools extension for inspecting and analyzing GraphQL network requests in real-time.
- Monitor GraphQL queries and mutations in real-time
- Syntax highlighting for GraphQL queries
- Request grouping and filtering
- Response inspection with JSON formatting
- Support for NRQL queries
- Dark mode interface
- Install from the Chrome Web Store
- Open Chrome DevTools (F12 or Cmd+Option+I)
- Navigate to the "GraphQL" panel
- This extension only monitors GraphQL network requests on the pages you visit
- No data is collected or transmitted outside your browser
- All data processing happens locally in your browser
- Only requires minimal permissions necessary for functionality
The extension uses several storage mechanisms to ensure performance while maintaining privacy:
- Uses
chrome.storage.local
to store:- User preferences (theme, starred groups)
- Request history (limited to 1000 items)
- All data remains in your browser
- Can be cleared via Chrome's clear browsing data options
- Implements LRU (Least Recently Used) cache for recent requests
- Uses message queuing for performance optimization
- Data is cleared when the browser is closed
- No persistence beyond browser session
- Request history: Maximum 1000 items
- Message batching: 100ms delay for performance
- Rate limiting: 50 requests per second per tab
storage
: Used to save your preferences and settings*://*/*
: Required to monitor GraphQL requests on websites you visit
For issues or feature requests, please visit our GitHub repository.
MIT License