A Chrome extension that helps identify blocked network requests in environments with content filtering (corporate networks, parental controls, etc.).
- Real-time monitoring of all network requests for the active tab
- Status tracking for successful, failed, and blocked requests
- Filter functionality to search for specific URLs or domains
- Clean interface showing request details (method, status, URL, timestamp, type)
- Automatic cleanup when navigating or closing tabs
- Error detection for requests blocked by filters or firewalls
- Troubleshooting corporate content filters
- Debugging parental control software
- Identifying blocked CDN or API endpoints
- Network security analysis
- Web development in restricted environments
- Download or clone this repository
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right
- Click "Load unpacked" and select the extension folder
- The extension icon will appear in your toolbar
- Click the extension icon to open the request logger
- Navigate to any website to start logging requests
- View successful requests (green), redirects (blue), client errors (red), and server errors (red)
- Use the filter box to search for specific URLs or domains
- Click "Clear All" to reset the log for the current tab
- Click "Refresh" to reload the current request data
- 2xx (Green): Successful requests
- 3xx (Blue): Redirects
- 4xx (Red): Client errors (often blocked by filters)
- 5xx (Red): Server errors
- ERROR (Gray): Network errors or blocked requests
webRequest: Monitor network requestswebNavigation: Detect page navigationactiveTab: Access current tab informationstorage: Store request data temporarily<all_urls>: Monitor requests to all domains
This extension only logs request metadata locally within your browser. No data is sent to external servers or stored permanently. All logs are cleared when tabs are closed or the browser is restarted.