| name | fast-browser-use |
| displayName | Fastest Browser Use |
| emoji | ⚡ |
| summary | Rust-powered browser automation that rips through DOMs 10x faster than Puppeteer. |
| description | Fastest browser automation with anti-bot bypass and DOM extraction. Navigate pages, capture screenshots, manage sessions, and harvest data from infinite scroll via Chrome DevTools Protocol. Runs 10x faster than Puppeteer. Trigger for any web scraping, automated browsing, data extraction, or screenshot task. |
| homepage | https://github.com/rknoche6/fast-browser-use |
| primaryEnv | bash |
| os | ["darwin","linux"] |
| requires | {"bins":["chrome"]} |
| install | [{"kind":"brew","formula":"rknoche6/tap/fast-browser-use"},{"kind":"cargo","package":"fast-browser-use"}] |
| config | {"requiredEnv":["CHROME_PATH"],"example":"# Standard headless setup\nexport CHROME_PATH=\"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome\"\nexport BROWSER_HEADLESS=\"true\"\n"} |
Fastest Browser Use
A Rust-based browser automation engine that provides a lightweight binary driving Chrome directly via CDP. It is optimized for token-efficient DOM extraction, robust session management, and speed.

🧪 Recipes for Agents
1. Bypass "Bot Detection" via Human Emulation
Simulate mouse jitter and random delays to scrape protected sites.
fast-browser-use navigate --url "https://protected-site.com" \
--human-emulation \
--wait-for-selector "#content"
2. The "Deep Freeze" Snapshot
Capture the entire DOM state and computed styles for perfect reconstruction later.
fast-browser-use snapshot --include-styles --output state.json
3. Login & Cookie Heist
Log in manually once, then steal the session for headless automation.
Step 1: Open non-headless for manual login
fast-browser-use login --url "https://github.com/login" --save-session ./auth.json
Step 2: Reuse session later
fast-browser-use navigate --url "https://github.com/dashboard" --load-session ./auth.json
4. 🚜 Infinite Scroll Harvester
Extract fresh data from infinite-scroll pages — perfect for harvesting the latest posts, news, or social feeds.
fast-browser-use harvest \
--url "https://news.ycombinator.com" \
--selector ".titleline a" \
--scrolls 3 \
--delay 800 \
--output headlines.json
Real output (59 unique items in ~6 seconds):
[
"Genode OS is a tool kit for building highly secure special-purpose OS",
"Mobile carriers can get your GPS location",
"Students using \"humanizer\" programs to beat accusations of cheating with AI",
...