devtools-protocol icon indicating copy to clipboard operation
devtools-protocol copied to clipboard

Chrome DevTools Protocol

Results 29 devtools-protocol issues
Sort by recently updated
recently updated
newest added

The new `changelog.md` style is quite nice for quick review of the changes, but unfortunately the diff appears to be mirrored, i.e. added lines appear with a "-" in front...

I am building a devtool extension, which uses several protocol functions. However, the recent update to Chrome causes any use of Profiler to throw an exception. For instance: `chrome.debugger.sendCommand({tabId:xxxx},"Profiler.start").then(e=> console.log(e))`...

Some domain types/commands/events in the JSON protocol definitions have properties/parameters of enum types that are not references to a top-level domain enum type, but that are instead inlined on the...

The url of the iframe is in the same domain as the url of the web page and will not be displayed in '/json' or '/json/list'

This change enables the `devtools-protocol` typings to be more easily imported in ESM-based environments like Deno. A new `esm` directory has been generated alongside the existing `types` directory. `esm` contains...

This pr extends the generator script to add `Promise` versions of events, e.g.: ```ts domContentEventFired(): Promise; ``` as a complement for ```ts on(event: 'domContentEventFired', listener: (params: Protocol.Page.DomContentEventFiredEvent) => void): void;...

Shouldn't there be `Promise` versions of the `on(event: ...)` type definitions in [types/protocol-proxy-api.d.ts](https://github.com/ChromeDevTools/devtools-protocol/blob/master/types/protocol-proxy-api.d.ts)? For example, there should also be ```ts loadEventFired(): Promise; ``` for https://github.com/ChromeDevTools/devtools-protocol/blob/bfcd0a38fec44a7104e1b542005328f2023c4a24/types/protocol-proxy-api.d.ts#L2958 All the other non-`on(event: ...)`...

I'm not 100% sure this is the right place to put this, however: I recently upgraded to the latest version of chrome, and since doing so am unable to use...

I'm using these definitions to generate a C# wrapper for all its defined API. The current master version does not work with the current Chrome stable version 87 because the...

Hello. the file https://github.com/ChromeDevTools/devtools-protocol/blob/master/changelog.md is bigger than 1mb so it doesn't show, you need to see it in raw mode. is it possible to hide the very old changes so...