-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Allow opting out of default Chrome launch arguments #729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+52
−6
Conversation
This file contains hidden or 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
bce1216 to
517e528
Compare
OrKoN
reviewed
Jan 12, 2026
OrKoN
reviewed
Jan 12, 2026
Collaborator
OrKoN
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! it looks like the docs have to be rebuilt. Please run npm run docs
Contributor
Author
|
Done, Thank you for the feedback @OrKoN |
OrKoN
approved these changes
Jan 12, 2026
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 15, 2026
🤖 I have created a release *beep* *boop* --- ## [0.13.0](chrome-devtools-mcp-v0.12.1...chrome-devtools-mcp-v0.13.0) (2026-01-14) ### 🎉 Features * Allow opting out of default Chrome launch arguments ([#729](#729)) ([9a51af2](9a51af2)) * support filePath in performance tools ([#686](#686)) ([68ae2f8](68ae2f8)) ### 🛠️ Fixes * support resize_page when browser window is maximized/fullscreenwindow state ([#748](#748)) ([4d9ac22](4d9ac22)) * use relative path for plugin source in marketplace ([#724](#724)) ([5c1ecf8](5c1ecf8)) ### 📄 Documentation * add experimental chrome on android guide ([#691](#691)) ([4a87702](4a87702)) * autoConnect - clarify how the mcp server selects a profile ([#693](#693)) ([28b8ff8](28b8ff8)) * claude code broken link ([#707](#707)) ([1f532b8](1f532b8)) * enhance cli docs + sort required vs opt params ([#674](#674)) ([81cbd99](81cbd99)) * update auto connect docs to mention min Chrome version ([#681](#681)) ([ab2340f](ab2340f)) * Update Claude Code instructions in README.md ([#711](#711)) ([f81cd2d](f81cd2d)) * update readme to include OpenCode example ([#560](#560)) ([fbba3c9](fbba3c9)) ### ♻️ Chores * change pageIdx to page ids ([#741](#741)) ([a23c6ba](a23c6ba)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
zainudinmuji4-commits
approved these changes
Jan 15, 2026
zainudinmuji4-commits
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
README.md
.github/dependabot.yml
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related Issue - #430
Description
When Chrome is launched via Puppeteer, it automatically adds a set of default flags like
--enable-automation --disable-extensions --disable-component-extensions-with-background-pages.Currently, there is no way to opt out of these defaults, which makes certain use cases difficult or impossible to support. this PR adds a way to selectively ignore specific default Chrome launch flags applied by Puppeteer using its ignoreDefaultArgs property.
{ "name": "chrome-devtools-mcp", "version": "latest", "mcpServers": { "chrome-devtools": { "command": "npx", "args": [ "chrome-devtools-mcp@latest", "--ignore-default-chrome-arg='--enable-automation'", "--ignore-default-chrome-arg='--disable-extensions'" ] } } }Feedback appreciated @OrKoN