-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# chrome-protocol-proxy | ||
|
||
```chrome-protocol-proxy``` is small proxy designed for ```chrome debugging protocol```. It's purpose is to capture messages written to and received from [Chrome Debugging Protocol](https://chromedevtools.github.io/debugger-protocol-viewer), assemble requests with responses, unpack messages from [Target domain](https://chromedevtools.github.io/debugger-protocol-viewer/tot/Target/) and provide easy to read, styles output. This tool is a fork (and heavily inspired by) of [chromedp-proxy](https://github.com/knq/chromedp/tree/master/cmd/chromedp-proxy). | ||
|
||
## usage | ||
```go get -u github.com/wendigo/chrome-protocol-proxy``` | ||
```chrome-protocol-proxy --help``` | ||
|
||
## configuration options | ||
``` | ||
-l string | ||
listen address (default "localhost:9223") | ||
-log string | ||
log file mask (default "logs/cdp-%s.log") | ||
-n disable logging to file | ||
-r string | ||
remote address (default "localhost:9222") | ||
-s shorten requests and responses | ||
``` | ||
|
||
## example |