chromeflow 0.2.1 → 0.2.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.
@@ -82,7 +82,7 @@ save_to controls where the PNG is saved: "downloads" (default) saves to ~/Downlo
82
82
  save_to: z.enum(["downloads", "cwd"]).optional().describe(`Where to save the PNG file: "downloads" (~/Downloads, default) or "cwd" (Claude's current working directory)`)
83
83
  },
84
84
  async ({ save_to = "downloads" }) => {
85
- const response = await bridge.request({ type: "screenshot" });
85
+ const response = await bridge.request({ type: "screenshot", grid: false });
86
86
  if (response.type !== "screenshot_response") throw new Error("Unexpected response from extension");
87
87
  const timestamp = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-").slice(0, 19);
88
88
  const filename = `chromeflow-${timestamp}.png`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromeflow",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Browser guidance MCP server for Claude Code — highlights, clicks, fills, and captures from the web so you don't have to.",
5
5
  "type": "module",
6
6
  "bin": {