chrome-devtools-mcp-for-extension 0.10.2 → 0.10.3
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.
|
@@ -496,7 +496,7 @@ async function handleConversationLoop(page, response, maxTurns = 5) {
|
|
|
496
496
|
*/
|
|
497
497
|
async function monitorResearch(page, response, startTime) {
|
|
498
498
|
response.appendResponseLine('⏳ DeepResearchを実行中... (数分かかる場合があります)');
|
|
499
|
-
const MAX_WAIT_TIME =
|
|
499
|
+
const MAX_WAIT_TIME = 60 * 60 * 1000; // 60 minutes max
|
|
500
500
|
let progressCounter = 0;
|
|
501
501
|
while (Date.now() - startTime < MAX_WAIT_TIME) {
|
|
502
502
|
await new Promise((resolve) => setTimeout(resolve, 5000));
|
|
@@ -549,7 +549,7 @@ async function monitorResearch(page, response, startTime) {
|
|
|
549
549
|
}
|
|
550
550
|
return {
|
|
551
551
|
completed: false,
|
|
552
|
-
error: 'リサーチがタイムアウトしました(
|
|
552
|
+
error: 'リサーチがタイムアウトしました(60分経過)',
|
|
553
553
|
};
|
|
554
554
|
}
|
|
555
555
|
export const deepResearchChatGPT = defineTool({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chrome-devtools-mcp-for-extension",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
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",
|