chrome-ai-bridge 1.0.12 → 1.0.13

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.
@@ -235,6 +235,8 @@ export async function waitForLoginStatus(page, provider, timeoutMs = LOGIN_TIMEO
235
235
  catch {
236
236
  // Ignore errors (page might be closed)
237
237
  }
238
+ // 監視開始を即座に通知(最初の進捗表示まで15秒待たせない)
239
+ log('👀 ログインを監視中... 検出でき次第すぐにお知らせします');
238
240
  while (Date.now() - start < timeoutMs) {
239
241
  const status = await getLoginStatus(page, provider);
240
242
  if (status === LoginStatus.LOGGED_IN) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-ai-bridge",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "MCP server bridging Chrome browser and AI assistants (ChatGPT, Gemini). Browser automation + AI consultation.",
5
5
  "type": "module",
6
6
  "bin": "./scripts/cli.mjs",