@technical-1/stealth
v1.0.0
Published
puppeteer-extra-plugin-stealth wrapper for the @technical-1 suite
Readme
@technical-1/stealth
Applies puppeteer-extra-plugin-stealth to your puppeteer instance — the
standard fingerprint-hardening evasions. You pass your puppeteer in; this
package owns puppeteer-extra + the stealth plugin as real dependencies (they
ARE the stealth mechanism).
Convenience wrapper. If you already use
puppeteer-extra, you can applypuppeteer-extra-plugin-stealthdirectly — this package is a typed, one-call (applyStealth) convenience so the@technical-1suite has a consistent stealth entry point. It adds no evasion logic of its own; all fingerprint hardening comes frompuppeteer-extra-plugin-stealth. If you only need stealth evasions, you can use that plugin directly.
import puppeteer from "puppeteer-core";
import { applyStealth } from "@technical-1/stealth";
const stealthPuppeteer = applyStealth(puppeteer);
const browser = await stealthPuppeteer.launch({ executablePath });