browser_list_resources
List all resources loaded by a web page, including scripts, stylesheets, images, and fonts, to analyze page composition and identify files for API inspection.
Instructions
[Disabled] List all resources (scripts, stylesheets, documents, images, fonts, etc.) loaded by a page. Returns resources from the browser cache — does not re-fetch anything. Use the type filter "Script" to find JavaScript files for API analysis, or "Stylesheet" for CSS. CDP resource types: Document, Stylesheet, Image, Media, Font, Script, TextTrack, XHR, Fetch, Prefetch, EventSource, WebSocket, Manifest, SignedExchange, Ping, CSPViolationReport, Preflight, Other. Pair with browser_get_resource_content to read the source of a specific resource.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tabId | Yes | Tab ID to list resources for | |
| type | No | Filter by resource type (e.g. 'Script', 'Stylesheet', 'Document', 'Image', 'Font'). Case-sensitive — must match CDP resource types exactly. |