You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -272,6 +272,10 @@ The Chrome DevTools MCP server supports the following configuration option:
272
272
Initial viewport size for the Chromee instances started by the server. For example, `1280x720`
273
273
-**Type:** string
274
274
275
+
-**`--proxyServer`**
276
+
Proxy server configuration for Chrome passed as --proxy-server when launching the browser. See https://www.chromium.org/developers/design-documents/network-settings/ for details.
277
+
-**Type:** string
278
+
275
279
<!-- END AUTO GENERATED OPTIONS -->
276
280
277
281
Pass them via the `args` property in the JSON configuration. For example:
Copy file name to clipboardExpand all lines: src/cli.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,10 @@ export const cliOptions = {
73
73
};
74
74
},
75
75
},
76
+
proxyServer: {
77
+
type: 'string'asconst,
78
+
description: `Proxy server configuration for Chrome passed as --proxy-server when launching the browser. See https://www.chromium.org/developers/design-documents/network-settings/ for details.`,
0 commit comments