chrome-devtools-mcp-for-extension 0.19.1 → 0.19.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.
|
@@ -270,8 +270,8 @@ export const askGeminiWeb = defineTool({
|
|
|
270
270
|
// - Generating: "回答を停止" button appears, "Gemini が入力中です" text
|
|
271
271
|
// - Complete: "Gemini が回答しました" text appears
|
|
272
272
|
// First, wait for Gemini to start generating (Stop button/icon to appear)
|
|
273
|
-
// This
|
|
274
|
-
const maxWaitForStart =
|
|
273
|
+
// This typically takes 1-3 seconds after sending
|
|
274
|
+
const maxWaitForStart = 5000; // 5 seconds max to start generating
|
|
275
275
|
const startWaitTime = Date.now();
|
|
276
276
|
let generationStarted = false;
|
|
277
277
|
while (Date.now() - startWaitTime < maxWaitForStart) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-devtools-mcp-for-extension",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.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",
|