From 8880aa2f3553f094eed632d68a54c2afc86f4ce5 Mon Sep 17 00:00:00 2001 From: leeguooooo Date: Thu, 5 Mar 2026 11:44:47 +0900 Subject: [PATCH] chore(release): 0.16.3-fork.2 - restore extension mode default to headed when headless is unspecified - keep explicit headless override behavior --- cli/Cargo.lock | 2 +- cli/Cargo.toml | 2 +- package.json | 2 +- src/browser.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/Cargo.lock b/cli/Cargo.lock index bd8c06a..fefd183 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "agent-browser-stealth" -version = "0.16.3-fork.1" +version = "0.16.3-fork.2" dependencies = [ "aes-gcm", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 780986b..d635ef8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser-stealth" -version = "0.16.3-fork.1" +version = "0.16.3-fork.2" edition = "2021" description = "Stealth browser automation CLI for AI agents with anti-bot evasions" license = "Apache-2.0" diff --git a/package.json b/package.json index ec98183..efa9990 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser-stealth", - "version": "0.16.3-fork.1", + "version": "0.16.3-fork.2", "description": "Stealth browser automation CLI for AI agents with anti-bot evasions", "type": "module", "main": "dist/daemon.js", diff --git a/src/browser.ts b/src/browser.ts index 70882ab..6ff3f86 100644 --- a/src/browser.ts +++ b/src/browser.ts @@ -2135,7 +2135,7 @@ export class BrowserManager { context = await launcher.launchPersistentContext( path.join(os.tmpdir(), `agent-browser-ext-${session}`), { - headless: options.headless ?? true, + headless: options.headless ?? false, executablePath: options.executablePath, ...(chromeChannel && { channel: chromeChannel }), args: allArgs,