chrome-devtools-mcp-for-extension 0.9.12 → 0.9.14

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.
@@ -509,7 +509,8 @@ export async function launch(options) {
509
509
  // Auto-detect system Chrome executable for extension support
510
510
  effectiveExecutablePath = getSystemChromeExecutable(channel);
511
511
  console.error(`🔍 Auto-detected system Chrome: ${effectiveExecutablePath}`);
512
- console.error(`💡 Using system Chrome for extension support (not Chrome for Testing)`);
512
+ console.error(`💡 Using system Chrome binary with isolated MCP profile`);
513
+ console.error(`📝 Extensions will be loaded from: ${extensionPaths.join(', ')}`);
513
514
  }
514
515
  else if (!executablePath) {
515
516
  // No extensions, use Chrome for Testing via channel
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-devtools-mcp-for-extension",
3
- "version": "0.9.12",
3
+ "version": "0.9.14",
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",