chromeflow 0.10.23 → 0.10.24
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.
- package/bin/chromeflow.mjs +2 -1
- package/package.json +1 -1
package/bin/chromeflow.mjs
CHANGED
|
@@ -24958,6 +24958,7 @@ Refuses fast on pages that are in fullscreen mode (captureVisibleTab hangs there
|
|
|
24958
24958
|
execSync(`osascript -e 'set the clipboard to (read (POSIX file "${tmpPath}") as \xABclass PNGf\xBB)'`);
|
|
24959
24959
|
notes.push("Copied to clipboard");
|
|
24960
24960
|
} catch {
|
|
24961
|
+
notes.push("Clipboard copy failed (macOS-only feature)");
|
|
24961
24962
|
}
|
|
24962
24963
|
}
|
|
24963
24964
|
const r = response;
|
|
@@ -26071,7 +26072,7 @@ ${lines.join("\n")}${shadowSection}` }] };
|
|
|
26071
26072
|
}
|
|
26072
26073
|
|
|
26073
26074
|
// packages/mcp-server/src/index.ts
|
|
26074
|
-
var PACKAGE_VERSION = true ? "0.10.
|
|
26075
|
+
var PACKAGE_VERSION = true ? "0.10.24" : "dev";
|
|
26075
26076
|
main().catch((err) => {
|
|
26076
26077
|
console.error("[chromeflow] Fatal error:", err);
|
|
26077
26078
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chromeflow",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.24",
|
|
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",
|