feat: add browser launch --args, --user-agent, --proxy-bypass configuration support. (#35)

* feat: add browser launch args, user-agent, and proxy configuration support

* fix: User Agent env need added

* fix: command pass error

---------

Co-authored-by: Chris Tate <chris@ctate.dev>
This commit is contained in:
Oanakiaja
2026-01-22 00:19:37 -06:00
committed by GitHub
co-authored by Chris Tate
parent e892bceadf
commit 083a946aac
12 changed files with 1075 additions and 198 deletions
+2
View File
@@ -42,6 +42,8 @@ const launchSchema = baseCommandSchema.extend({
password: z.string().optional(),
})
.optional(),
args: z.array(z.string()).optional(),
userAgent: z.string().optional(),
provider: z.string().optional(),
});