browser_oxide 0.1.0

Stealth headless browser engine in Rust: real HTML/CSS/DOM/JS, V8 via deno_core, own BoringSSL TLS/JA4 fingerprint, no Chromium, no CDP — for anti-bot web scraping, archival, and AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Stealth fingerprint profiles for browser_oxide.
//!
//! Provides consistent browser identities — UA string, screen, locale,
//! GPU vendor/renderer, TLS impersonation label, behavioural input model
//! — so the engine reports a coherent "I am Chrome 148 on macOS" surface
//! rather than a default headless fingerprint.

pub mod behavior;
pub mod config;
pub mod gpu;
pub mod presets;
pub mod profile;

pub use behavior::{BehaviorProfile, Handedness, MousePoint, ScrollStyle, WheelTick};
pub use config::{ConfigError, ConfigFormat};
pub use gpu::GpuProfile;
pub use presets::*;
pub use profile::{DeviceClass, StealthProfile};