chrome-devtools-mcp-for-extension 0.23.1 → 0.23.2

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.
@@ -50,7 +50,8 @@ async function getOrCreateChatGPTPage(context) {
50
50
  for (const page of pages) {
51
51
  const url = page.url();
52
52
  if (url.includes('chatgpt.com') || url.includes('chat.openai.com')) {
53
- // Already on ChatGPT - no navigation needed
53
+ // Already on ChatGPT - bring to front and no navigation needed
54
+ await page.bringToFront();
54
55
  return { page, needsNavigation: false };
55
56
  }
56
57
  }
@@ -48,6 +48,7 @@ async function getOrCreateGeminiPage(context) {
48
48
  for (const page of pages) {
49
49
  const url = page.url();
50
50
  if (url.includes('gemini.google.com')) {
51
+ await page.bringToFront();
51
52
  return page;
52
53
  }
53
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-devtools-mcp-for-extension",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
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": "./scripts/cli.mjs",