Chrome Remote debugging protocol
Chrome Remote debugging protocol
Under the hood, Chrome Developer Tools is a web application written in HTML, JavaScript and CSS. It has a special binding available at JavaScript runtime that allows interacting with chrome pages and instrumenting them. Interaction protocol consists of commands that are sent to the page and events that the page is generating. Although Chrome Developer Tools is the only client of this protocol, there are ways for third parties to bypass it and start instrumenting browser pages explicitly. We will describe the ways it could be done below.
Note: If you are interested in inspecting remote pages on Chrome for Android, please see the remote debugging documentation. For users wishing to implement custom inspection code using our debugger protocol instead, please use the instructions below.
Protocol
Interaction protocol consists of JSON commands that are sent to the page and events that the page is generating. We define this protocol in Blink ("upstream") so that any Blink-based browser supported it.- As of Google Chrome M31, we commit to supporting the version 1.1 of the protocol. All subsequent 1.* versions of the protocol are going to be backwards compatible with 1.1.
- As of Google Chrome M18, we commit to supporting the version 1.0 of the protocol. All subsequent 1.* versions of the protocol are going to be backwards compatible with 1.0.
- As of Google Chrome M16, we commit to supporting the version 0.1 of the protocol. All subsequent 0.* versions of the protocol are going to be backwards compatible with 0.1.
- No commands or events are removed from the protocol
- No required parameters are added to the commands
- No required parameters are removed from command responses or events
DevTools may introduce new features that are not currently documented under the tip-of-tree protocol documentation. You can discover these if you want to try using features, however, the undocumented protocol is volatile and may break at any time. First, inspect the inspector and reload the inspector so your attached one can view its WebSocket connection (
Network > Filter > WebSockets
).
Then view the frames of WebSocket activity as you use the host
DevTools. You may need to re-click the WebSocket item to have the Frame
activity update.Debugging over the wire
Today Developer Tools front-end can attach to a remotely running Chrome instance for debugging. For this scenario to work, you should start your host Chrome instance with the remote-debugging-port command line switch:
chrome.exe --remote-debugging-port=9222
Then you can start a client Chrome instance, using a separate user profile:
chrome.exe --user-data-dir=<some directory>
And now you can navigate to the given port from your client and attach to
any of the discovered tabs for debugging.
http://localhost:9222
You will find Developer Tools interface identical to the embedded one and
here is why:- When you navigate your client browser to the remote's Chrome port, Developer Tools front-end is being served from the host Chrome as a Web Application from the Web Server.
- It fetches HTML, JavaScript and CSS files over HTTP
- Once loaded, Developer Tools establishes a Web Socket connection to its host and starts interchanging JSON messages with it.
http://localhost:9222/json
and getting a JSON object with information about inspectable pages along
with the WebSocket addresses that you could use in order to start
instrumenting them.
Note that we are currently working on exposing an HTTP-based
protocol that does not require client WebSocket implementation.
Remote debugging is especially useful when debugging remote
instances of the browser or attaching to the embedded devices. Blink port
owners are responsible for exposing debugging connections to the external
users.Using debugger extension API
To allow third parties to interact with the protocol, we introduced chrome.debugger extension API that exposes this JSON message transport interface. As a result, you can not only attach to the remotely running Chrome instance, but also instrument it from its own extension.Chrome Debugger Extension API provides a higher level API where command domain, name and body are provided explicitly in the
sendCommand
call. This API hides request ids and handles binding of the request with its
response, hence allowing sendCommand
to report result in the
callback function call. One can also use this API in combination with the other
Extension APIs.
If you are developing a Web-based IDE, you should implement an extension that exposes debugging capabilities to your page and your IDE will be able to open pages with the target application, set breakpoints there, evaluate expressions in console, live edit JavaScript and CSS, display live DOM, network interaction and any other aspect that Developer Tools is instrumenting today.
Note: opening embedded Developer Tools will terminate the
remote connection / detach the extension and will replace active debugger with
itself. We are working on allowing several clients to instrument the page
simultaneously.
Comments
Post a Comment