Skip to content

Commit b6e1d05

Browse files
authored
Update profile-configs.md
1 parent 23d1bd8 commit b6e1d05

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

profiles/profile-configs.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ All configurations are embedded in the `configs` field inside your profile JSON
3030
| `disableDeviceScaleFactorOnGUI` | If `true`, ignore device scale factor for GUI elements (disable DPI-based UI scaling). | `false` |
3131
| `timezone` | `"auto"` = IP-based; `"real"` = system timezone; any other string = custom timezone name. | `"auto"` |
3232
| `location` | `"auto"` = IP-based; `"real"` = system (GPS); object = custom coordinates (`lat`, `lon`). | `"auto"` |
33+
| `browserBrand` | override for `navigator.userAgentData.brands` and related UA fields. Supports "chromium", "chrome", "edge", "brave". | `"chrome"` |
34+
| `injectRandomHistory` | If `true`, BotBrowser will simulate prior navigation by injecting a random number of history entries when opening a new tab (fake `history.back()`, etc.). | `false` |
3335

3436
### Proxy Settings
3537

@@ -154,7 +156,13 @@ All configurations are embedded in the `configs` field inside your profile JSON
154156
"noiseClientRects": false,
155157
156158
// noiseTextRects: true adds noise to TextRects fingerprint; false disables it
157-
"noiseTextRects": true
159+
"noiseTextRects": true,
160+
161+
// browserBrand: override for `navigator.userAgentData.brands` and related UA fields. Supports "chromium", "chrome", "edge", "brave"
162+
"browserBrand": "chrome",
163+
164+
// injectRandomHistory: true will simulate prior navigation by injecting a random number of history entries when opening a new tab
165+
"injectRandomHistory": false,
158166
}
159167
}
160168

0 commit comments

Comments
 (0)