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
@@ -280,6 +280,10 @@ The Chrome DevTools MCP server supports the following configuration option:
280
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
281
-**Type:** string
282
282
283
+
-**`--acceptInsecureCerts`**
284
+
If enabled, ignores errors relative to self-signed and expired certificates. Use with caution.
285
+
-**Type:** boolean
286
+
283
287
<!-- END AUTO GENERATED OPTIONS -->
284
288
285
289
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
@@ -76,6 +76,10 @@ export const cliOptions = {
76
76
type: 'string'asconst,
77
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.`,
78
78
},
79
+
acceptInsecureCerts: {
80
+
type: 'boolean'asconst,
81
+
description: `If enabled, ignores errors relative to self-signed and expired certificates. Use with caution.`,
0 commit comments