$npx -y skills add antibrow/anti-detect-browser-skills --skill anti-detect-browserLaunch and manage anti-detect browsers with unique real-device fingerprints for multi-account operations, web scraping, ad verification, and AI agent automation. Use when the user needs to run multiple browser sessions with distinct identities, manage persistent browser profiles,
| 1 | # Anti-Detect Browser SDK |
| 2 | |
| 3 | Launch Chromium instances with real-device fingerprints via standard Playwright APIs. Each browser gets a unique, consistent digital identity - undetectable by anti-bot systems. |
| 4 | |
| 5 | - npm package: `anti-detect-browser` |
| 6 | - Dashboard: `https://antibrow.com` |
| 7 | - REST API base: `https://antibrow.com/api/v1/` |
| 8 | - Documentation: `https://antibrow.com/docs` |
| 9 | |
| 10 | ## When to use |
| 11 | |
| 12 | - **Multi-account management** - Run dozens of social media, e-commerce, or ad accounts on the same machine without linking. Each browser profile has its own fingerprint, cookies, and storage. |
| 13 | - **Web scraping & data collection** - Rotate fingerprints across scraping sessions to avoid detection and fingerprint-IP correlation bans. |
| 14 | - **Ad verification & competitive intelligence** - View ads and content as different user profiles across regions and device types. |
| 15 | - **Social media automation** - Manage multiple accounts with persistent profiles that survive browser restarts. |
| 16 | - **E-commerce operations** - Operate multiple seller/buyer accounts with fully isolated browser environments. |
| 17 | - **AI agent browser control** - Run as an MCP server so AI agents (Claude, GPT, etc.) can launch, navigate, and interact with anti-detect browsers through tool calls. |
| 18 | - **QA & cross-environment testing** - Test how your site behaves under different browser fingerprints, screen sizes, and device configurations. |
| 19 | |
| 20 | ## Quick start |
| 21 | |
| 22 | ```bash |
| 23 | npm install anti-detect-browser |
| 24 | ``` |
| 25 | |
| 26 | ```typescript |
| 27 | import { AntiDetectBrowser } from 'anti-detect-browser' |
| 28 | |
| 29 | // Get your API key at https://antibrow.com |
| 30 | const ab = new AntiDetectBrowser({ key: 'your-api-key' }) |
| 31 | |
| 32 | const { browser, page } = await ab.launch({ |
| 33 | fingerprint: { tags: ['Windows 10', 'Chrome'] }, |
| 34 | profile: 'my-account-01', |
| 35 | proxy: 'http://user:pass@host:port', |
| 36 | }) |
| 37 | |
| 38 | // Standard Playwright API from here — zero learning curve |
| 39 | await page.goto('https://example.com') |
| 40 | await browser.close() |
| 41 | ``` |
| 42 | |
| 43 | ## Core concepts |
| 44 | |
| 45 | ### Profiles — persistent browser identities |
| 46 | |
| 47 | A profile saves cookies, localStorage, and session data across launches. Same profile name = same stored state next time. |
| 48 | |
| 49 | ```typescript |
| 50 | // First launch — fresh session |
| 51 | const { page } = await ab.launch({ profile: 'shop-01' }) |
| 52 | await page.goto('https://shop.example.com/login') |
| 53 | // ... login ... |
| 54 | await browser.close() |
| 55 | |
| 56 | // Later — session restored, already logged in |
| 57 | const { page: p2 } = await ab.launch({ profile: 'shop-01' }) |
| 58 | await p2.goto('https://shop.example.com/dashboard') // no login needed |
| 59 | ``` |
| 60 | |
| 61 | ### Fingerprints — real device data from the cloud |
| 62 | |
| 63 | Each launch fetches a real fingerprint collected from actual devices. Over 30 categories (Canvas, WebGL, Audio, Fonts, WebRTC, WebGPU, etc.) with 500+ individual parameters. |
| 64 | |
| 65 | ```typescript |
| 66 | // Windows Chrome, version 130+ |
| 67 | await ab.launch({ |
| 68 | fingerprint: { tags: ['Windows 10', 'Chrome'], minBrowserVersion: 130 }, |
| 69 | }) |
| 70 | |
| 71 | // Mac Safari |
| 72 | await ab.launch({ |
| 73 | fingerprint: { tags: ['Apple Mac', 'Safari'] }, |
| 74 | }) |
| 75 | |
| 76 | // Mobile Android |
| 77 | await ab.launch({ |
| 78 | fingerprint: { tags: ['Android', 'Mobile', 'Chrome'] }, |
| 79 | }) |
| 80 | ``` |
| 81 | |
| 82 | Available filter tags: `Microsoft Windows`, `Apple Mac`, `Android`, `Linux`, `iPad`, `iPhone`, `Edge`, `Chrome`, `Safari`, `Firefox`, `Desktop`, `Mobile`, `Windows 7`, `Windows 8`, `Windows 10` |
| 83 | |
| 84 | ### Visual identification — tell windows apart at a glance |
| 85 | |
| 86 | When running many browsers simultaneously, each window gets a floating label, title prefix, and unique theme color. |
| 87 | |
| 88 | ```typescript |
| 89 | await ab.launch({ |
| 90 | profile: 'twitter-main', |
| 91 | label: '@myhandle', // floating label + window title |
| 92 | color: '#e74c3c', // unique window border color |
| 93 | }) |
| 94 | ``` |
| 95 | |
| 96 | ### Proxy integration |
| 97 | |
| 98 | Route each browser through a different proxy for geo-targeting or IP rotation. |
| 99 | |
| 100 | ```typescript |
| 101 | await ab.launch({ |
| 102 | proxy: 'socks5://user:pass@us-proxy.example.com:1080', |
| 103 | fingerprint: { tags: ['Windows 10', 'Chrome'] }, |
| 104 | profile: 'us-account', |
| 105 | }) |
| 106 | ``` |
| 107 | |
| 108 | ### Live View — watch headless browsers in real time |
| 109 | |
| 110 | Monitor headless sessions from the `https://antibrow.com` dashboard. Useful for debugging AI agent actions or letting team members observe. |
| 111 | |
| 112 | ```typescript |
| 113 | const { liveView } = await ab.launch({ |
| 114 | headless: true, |
| 115 | liveView: true, |
| 116 | }) |
| 117 | |
| 118 | console.log('Watch live:', liveView.viewUrl) |
| 119 | // Share this URL — anyone with access can see the browser screen |
| 120 | ``` |
| 121 | |
| 122 | ## Inject into existing Playwright setup |
| 123 | |
| 124 | Already have Playwright scripts? Add fingerprints without changing your workflow. |
| 125 | |
| 126 | ```typescript |
| 127 | import { chromium } from 'playwright' |
| 128 | import { applyFingerprint |