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
@@ -276,6 +276,10 @@ The Chrome DevTools MCP server supports the following configuration option:
276
276
Initial viewport size for the Chromee instances started by the server. For example, `1280x720`
277
277
-**Type:** string
278
278
279
+
-**`--proxyServer`**
280
+
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.
281
+
-**Type:** string
282
+
279
283
<!-- END AUTO GENERATED OPTIONS -->
280
284
281
285
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
@@ -72,6 +72,10 @@ export const cliOptions = {
72
72
};
73
73
},
74
74
},
75
+
proxyServer: {
76
+
type: 'string'asconst,
77
+
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