@wordbricks/playwright-mcp 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/config.js +1 -0
  2. package/package.json +1 -1
package/lib/config.js CHANGED
@@ -85,6 +85,7 @@ export function configFromCLIOptions(cliOptions) {
85
85
  // Add default Chrome args to avoid automation detection
86
86
  if (browserName === 'chromium') {
87
87
  launchOptions.args = launchOptions.args || [];
88
+ launchOptions.args.push('--disable-infobars');
88
89
  launchOptions.args.push('--disable-blink-features=AutomationControlled');
89
90
  }
90
91
  // --app was passed, add app mode argument
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordbricks/playwright-mcp",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Playwright Tools for MCP",
5
5
  "type": "module",
6
6
  "repository": {