-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.json
More file actions
31 lines (31 loc) · 875 Bytes
/
config-example.json
File metadata and controls
31 lines (31 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"browser": {
"enabled": true,
"defaultProfile": "custom",
"profiles": {
"custom": {
"driver": "custom",
"executablePath": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"cdpPort": 19000,
"userDataDir": "~/.openclaw/browser/custom",
"color": "#00FF00",
"customFlags": [
"--disable-blink-features=AutomationControlled",
"--disable-web-security"
]
},
"custom-brave": {
"driver": "custom",
"executablePath": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",
"cdpPort": 19001,
"userDataDir": "~/.openclaw/browser/custom-brave",
"color": "#FF6600"
},
"custom-remote": {
"driver": "custom",
"cdpUrl": "http://10.0.0.42:9222",
"color": "#0066CC"
}
}
}
}