feat: add Stealth Chromium option to browser session creation UI (#5329)

This commit is contained in:
LawyZheng 2026-04-01 15:13:03 +08:00 committed by GitHub
parent 898e419673
commit dafc7d37b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -76,6 +76,7 @@ const BROWSER_TYPE_OPTIONS: Array<{
}> = [
{ value: "msedge", label: "Microsoft Edge" },
{ value: "chrome", label: "Google Chrome" },
{ value: "stealth-chromium", label: "Stealth Chromium" },
];
const EXTENSION_OPTIONS: Array<{

View file

@ -1,5 +1,5 @@
type BrowserSessionExtension = "ad-blocker" | "captcha-solver";
type BrowserSessionType = "msedge" | "chrome";
type BrowserSessionType = "msedge" | "chrome" | "stealth-chromium";
interface BrowserSession {
browser_address: string | null;