Compare commits

...
Author SHA1 Message Date
leeguooooo 8880aa2f35 chore(release): 0.16.3-fork.2
- restore extension mode default to headed when headless is unspecified

- keep explicit headless override behavior
2026-03-05 11:44:47 +09:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies = [
[[package]] [[package]]
name = "agent-browser-stealth" name = "agent-browser-stealth"
version = "0.16.3-fork.1" version = "0.16.3-fork.2"
dependencies = [ dependencies = [
"aes-gcm", "aes-gcm",
"async-trait", "async-trait",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "agent-browser-stealth" name = "agent-browser-stealth"
version = "0.16.3-fork.1" version = "0.16.3-fork.2"
edition = "2021" edition = "2021"
description = "Stealth browser automation CLI for AI agents with anti-bot evasions" description = "Stealth browser automation CLI for AI agents with anti-bot evasions"
license = "Apache-2.0" license = "Apache-2.0"
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "agent-browser-stealth", "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", "description": "Stealth browser automation CLI for AI agents with anti-bot evasions",
"type": "module", "type": "module",
"main": "dist/daemon.js", "main": "dist/daemon.js",
+1 -1
View File
@@ -2135,7 +2135,7 @@ export class BrowserManager {
context = await launcher.launchPersistentContext( context = await launcher.launchPersistentContext(
path.join(os.tmpdir(), `agent-browser-ext-${session}`), path.join(os.tmpdir(), `agent-browser-ext-${session}`),
{ {
headless: options.headless ?? true, headless: options.headless ?? false,
executablePath: options.executablePath, executablePath: options.executablePath,
...(chromeChannel && { channel: chromeChannel }), ...(chromeChannel && { channel: chromeChannel }),
args: allArgs, args: allArgs,