browser_oxide 0.1.3

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
/**
 * Instance bootstrap — creates the base instances of standard browser objects.
 * Runs early so that subsequent bootstraps (like dom) can reference them.
 */
((globalThis) => {
    if (!globalThis.navigator) {
        globalThis.navigator = Object.create(globalThis.Navigator.prototype);
    }
    if (!globalThis.history) {
        globalThis.history = Object.create(globalThis.History.prototype);
    }
    if (!globalThis.screen) {
        globalThis.screen = Object.create(globalThis.Screen.prototype);
    }
    if (!globalThis.performance) {
        globalThis.performance = Object.create(globalThis.Performance.prototype);
    }
})(globalThis);