diff --git a/pages/index.md b/pages/index.md index 5163531b6..e73f5bedd 100644 --- a/pages/index.md +++ b/pages/index.md @@ -34,9 +34,10 @@ The stable release of the protocol, tagged at Chrome 64. It includes a smaller s

Consider subscribing to the chrome-debugging-protocol mailing list. -

Monitoring the protocol

+

Inspect CDP traffic using Protocol Monitor in DevTools

This is especially handy to understand how the DevTools frontend makes use of the protocol. -You can view all requests/responses and methods as they happen. +You can view all requests/responses and methods as they happen in the Protocol Monitor +panel in DevTools.

@@ -48,7 +49,7 @@ Click the gear icon in the top-right of the DevTools to open the Settings Select Experiments on the left of settings. Turn on "Protocol Monitor", then close and reopen DevTools. Now click the ⋮ menu icon, choose More Tools and then select Protocol monitor. -

You can also issue your own commands using Protocol Monitor. If the command does not require any parameters, +

You can also send commands using Protocol Monitor. If the command does not require any parameters, type the command into the prompt at the bottom of the Protocol Monitor panel and press Enter, for example, Page.captureScreenshot. If the command requires parameters, provide them as JSON, for example, {"cmd":"Page.captureScreenshot","args":{"format": "jpeg"}}. diff --git a/readme.md b/readme.md index 91eee0993..7bc0dd289 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,7 @@ -# devtools-protocol -Explore the Chrome DevTools Protocol, its methods, events and basic documentation. +# debugger-protocol-viewer + +Website for viewing Chrome DevTools Protocol defined at +https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/public/devtools_protocol/. More: [DevTools Protocol repo](https://github.com/ChromeDevTools/devtools-protocol) and [published devtools protocol viewer](https://chromedevtools.github.io/devtools-protocol/) @@ -61,4 +63,5 @@ Apache ## Contributing -Pull requests very welcome! +Report issues about the website via GitHub issues in this repo. Please report +issues with CDP itself via https://crbug.com/new. Pull requests very welcome!