chrome-devtools-mcp-for-extension 0.9.17 → 0.9.18

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.
@@ -305,6 +305,13 @@ export const askChatGPTWeb = defineTool({
305
305
  if (textbox) {
306
306
  textbox.value = `[Project: ${projectName}]`;
307
307
  textbox.dispatchEvent(new Event('input', { bubbles: true }));
308
+ // Press Enter to confirm
309
+ textbox.dispatchEvent(new KeyboardEvent('keydown', {
310
+ key: 'Enter',
311
+ code: 'Enter',
312
+ keyCode: 13,
313
+ bubbles: true,
314
+ }));
308
315
  textbox.blur();
309
316
  }
310
317
  }, project);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-devtools-mcp-for-extension",
3
- "version": "0.9.17",
3
+ "version": "0.9.18",
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",