gcd icon indicating copy to clipboard operation
gcd copied to clipboard

Unofficial implementation of the Google Chrome Remote Debugger in Go

Results 4 gcd issues
Sort by recently updated
recently updated
newest added

Looks like once again the protocol files are being changed. The location changed, and will only be available in 'pdl' format. Currently, the json files are converted and pushed to:...

help wanted

Delete tag which has never been a valid Go release: `v.2.2.2` instead of `v2.2.2` ```console git push origin :v.2.2.2 git tag -d v.2.2.2 ```

1. Downloaded the latest `browser_protocol.json` file from [here](https://source.chromium.org/chromium/chromium/src/+/main:third_party/devtools-frontend/src/third_party/blink/public/devtools_protocol/browser_protocol.json) 1. Removed "\n" sequences from the file and minified it (to match what I think was also done in previous updates) 1....

Fix chrome process lifetime by trying to nicely terminate the process before killing. Also wait for process to exit before returning from `ExitProcess`. This became an issue when trying to...