-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbrowserkit.config.js
More file actions
23 lines (23 loc) · 963 Bytes
/
browserkit.config.js
File metadata and controls
23 lines (23 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// browserkit.config.js
export default {
host: "127.0.0.1",
basePort: 52741,
adapters: {
// debugPort enables raw Playwright access — see README for details
"@browserkit-dev/adapter-hackernews": { port: 52741, debugPort: 52742 },
"/Users/jzarecki/Projects/browserkit-adapter-google-discover/dist/index.js": {
port: 52743,
deviceEmulation: "Pixel 7",
channel: "chrome",
},
"/Users/jzarecki/Projects/session-mcp/packages/adapter-linkedin/dist/index.js": { port: 52744, channel: "chrome" },
"/Users/jzarecki/Projects/session-mcp/packages/adapter-rescue-flights/dist/index.js": { port: 52746 },
"/Users/jzarecki/Projects/browserkit-adapter-booking/dist/index.js": {
port: 52745,
// channel: "chrome" not used — CloakBrowser uses its own Chromium binary
antiDetection: {
useCloakBrowser: true, // CloakBrowser's 33 C++ patches handle everything DataDome checks
},
},
},
};