/install browser-scraper
Browser Scraper
Scrapes web pages using Playwright with a real Chrome/Chromium binary and an existing user profile. Bypasses bot detection by sharing existing cookies, fingerprint, and session.
Profiles
The scraper supports multiple Chrome profiles:
-
Default (no
--profileflag): Uses the system's default Chrome profile- macOS:
~/Library/Application Support/Google/Chrome/Default - Linux:
~/.config/google-chrome/Default - Windows:
%LOCALAPPDATA%\Google\Chrome\User Data\Default
- macOS:
-
Named profile (
--profile \x3Cname>): Usesprofiles/\x3Cname>/under the skill directory- Create a profile by launching Chrome with
--profile-directory=Profile 1or similar, then point the scraper at that folder - Useful for: isolating logins, avoiding conflicts with your main Chrome session, scraping without auth
- Create a profile by launching Chrome with
Script
# Default profile (system Chrome)
node scripts/scrape.mjs \x3Curl> [css_selector]
# Named profile (profiles/\x3Cname>/)
node scripts/scrape.mjs \x3Curl> [css_selector] --profile \x3Cname>
# Headless mode (faster, higher block risk)
node scripts/scrape.mjs \x3Curl> --headless --profile \x3Cname>
# Keep browser open after scraping (for interactive use)
node scripts/scrape.mjs \x3Curl> --profile \x3Cname> --keep-open
# Extra wait for lazy-loaded content (default: 3000ms)
node scripts/scrape.mjs \x3Curl> --profile \x3Cname> --wait 6000
Run from the skill directory:
cd ~/.openclaw-yekeen/workspace/skills/browser-scraper/
node scripts/scrape.mjs https://www.reddit.com/
Output
- JSON to stdout: matched elements or page preview
- Screenshot saved to
/tmp/browser-scraper-last.png
Key Design
channel: 'chrome'— launches real Chrome when available, falls back to system ChromiumlaunchPersistentContextwith the profile directory--disable-blink-features=AutomationControlled+navigator.webdriverpatchheadless: falseby default to avoid SingletonLock conflicts
Requirements
- Playwright installed:
npm install playwright - Chrome or Chromium installed on the system
- On macOS/Linux: the
channel: 'chrome'option requires Chrome (not Chromium) to be installed
Tips
- Chrome must not already be open with the target profile (SingletonLock error). Close Chrome first, or use a named profile to avoid conflicts.
- If you get a
SingletonLockerror with a named profile, delete theSingletonLockfile in that profile directory and try again. - Use
--keep-opento leave the browser open for interactive use after scraping — Ctrl+C to close. - For sites with lazy-loaded content: use
--wait \x3Cms>flag or modify the script to increasewaitForTimeout - For Reddit: use selector
shreddit-postand read attributes (post-title,author,score,permalink) - To create a fresh isolated profile: run Chrome from the terminal with
--profile-directory=Profile Xand log in, then point the scraper at that directory
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install browser-scraper - After installation, invoke the skill by name or use
/browser-scraper - Provide required inputs per the skill's parameter spec and get structured output
What is browser scraper?
Scrape websites using a real Chrome browser with the user's Chrome profile — shares cookies, auth, and fingerprint to bypass bot detection (Cloudflare, Reddi... It is an AI Agent Skill for Claude Code / OpenClaw, with 116 downloads so far.
How do I install browser scraper?
Run "/install browser-scraper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is browser scraper free?
Yes, browser scraper is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does browser scraper support?
browser scraper is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created browser scraper?
It is built and maintained by neekey (@neekey); the current version is v1.0.0.