chromeflow 0.10.1 → 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.
@@ -24830,6 +24830,11 @@ After tabs.onUpdated fires status=complete, chromeflow also runs a 6s settle che
24830
24830
  text += `
24831
24831
 
24832
24832
  \u26A0 anti_bot_detected: "${r.anti_bot_detected}" \u2014 the page returned a known block / challenge response. Page content is unlikely to be the intended target. Don't try to interact with it; navigate elsewhere or surface to the user.`;
24833
+ }
24834
+ if (r.dismissed_beforeunload) {
24835
+ text += `
24836
+
24837
+ \u2139 dismissed_beforeunload: true \u2014 the previous page had unsaved content (typed text in a composer, form draft, etc.) and Chrome's "Are you sure you want to leave?" dialog was auto-dismissed so navigation could proceed. If that draft was load-bearing, navigate back and re-capture before continuing.`;
24833
24838
  }
24834
24839
  return { content: [{ type: "text", text }] };
24835
24840
  }
@@ -26055,7 +26060,7 @@ ${lines.join("\n")}${shadowSection}` }] };
26055
26060
  }
26056
26061
 
26057
26062
  // packages/mcp-server/src/index.ts
26058
- var PACKAGE_VERSION = true ? "0.10.1" : "dev";
26063
+ var PACKAGE_VERSION = true ? "0.10.3" : "dev";
26059
26064
  main().catch((err) => {
26060
26065
  console.error("[chromeflow] Fatal error:", err);
26061
26066
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromeflow",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "description": "MCP server for chromeflow — lets Claude Code or Codex CLI drive your real Chrome browser with sessions intact. Plugin install recommended; npx chromeflow for manual MCP wiring.",
5
5
  "type": "module",
6
6
  "main": "./bin/chromeflow.mjs",