-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
binary only? #128
-
Are there plans to ship CB without the extra layers of Python/TypeScript/Docker? Just a statically linked single binary like camoufox, easily installed on different machines (macos, windows, linux)?
I use agent-browser and all it needs is a Chromium process running with cdp ports open.
Awesome work!
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment 1 reply
-
Thanks for the kind words!
The binary already works standalone — no Python, Node, or Docker needed. The wrappers are optional convenience layers for Playwright/Puppeteer integration.
Download the binary for your platform from GitHub Releases, extract, and run:
tar xzf cloakbrowser-linux-x64.tar.gz ./chrome --remote-debugging-port=9222 --no-sandbox https://example.com
The binary auto-generates randomized fingerprints with zero flags. You can optionally pin a seed or override specific values (--fingerprint=<seed>, --fingerprint-platform=windows, etc.).
If you want to see the full set of default launch parameters (viewport, stealth args, platform spoofing), check cloakbrowser/config.py and cloakbrowser/browser.py. The wrapper passes things like --fingerprint-platform=windows on Linux by default, which you may want to replicate.
Available for Linux x64, Linux arm64, macOS (Intel + Apple Silicon), and Windows x64.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks! Ideally would love to have a brew installer for macos, but it maybe too much to ask at this point!
Beta Was this translation helpful? Give feedback.