chrome-devtools-mcp-for-extension 0.6.0 → 0.6.1

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.
@@ -336,7 +336,7 @@ export async function launch(options) {
336
336
  console.error(` Profile Type: ${usingSystemProfile ? 'System Profile (auto-detected)' : 'Custom Profile'}`);
337
337
  console.error(` Headless: ${headless}`);
338
338
  console.error(` Args: ${JSON.stringify(args, null, 2)}`);
339
- console.error(` Ignored Default Args: ${extensionPaths.length > 0 ? '["--disable-extensions"]' : 'none'}`);
339
+ console.error(` Ignored Default Args: ["--disable-extensions", "--enable-automation"]`);
340
340
  try {
341
341
  const browser = await puppeteer.launch({
342
342
  ...connectOptions,
@@ -347,7 +347,7 @@ export async function launch(options) {
347
347
  pipe: true,
348
348
  headless,
349
349
  args,
350
- ignoreDefaultArgs: extensionPaths.length > 0 ? ['--disable-extensions', '--enable-automation'] : ['--enable-automation'],
350
+ ignoreDefaultArgs: ['--disable-extensions', '--enable-automation'],
351
351
  });
352
352
  if (options.logFile) {
353
353
  // FIXME: we are probably subscribing too late to catch startup logs. We
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-devtools-mcp-for-extension",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "MCP server for Chrome extension development with Web Store automation. Fork of chrome-devtools-mcp with extension-specific tools.",
5
5
  "type": "module",
6
6
  "bin": "./build/src/index.js",