@@ -61,6 +61,27 @@ browser:
6161 # ⚠️ Risk: Normal Firefox users have Fission enabled by default. While disabling it does not leak common fingerprints,
6262 # extremely advanced anti-bot systems might identify automated features via "single-process model" or "IPC delays".
6363 fission : true
64+
65+ # CSS Performance Injection
66+ # Reduce CPU load by disabling web effects (Best for CPU-only environments)
67+ cssInject :
68+ # Disable web animations
69+ # Effect: Removes transition and animation
70+ # Benefit: Significantly lowers continuous CPU usage
71+ # Risk: Very low. Almost no impact on browser fingerprint
72+ animation : false
73+
74+ # Disable filters and shadows
75+ # Effect: Removes blur, box-shadow, etc.
76+ # Benefit: Prevents CPU spikes and lag in no-GPU environments
77+ # Risk: Medium. Interface aesthetics degraded, few anti-bots might detect style calculations
78+ filter : false
79+
80+ # Reduce font rendering quality
81+ # Effect: Disables font anti-aliasing, forces fast rendering mode
82+ # Benefit: Slightly reduces CPU drawing pressure
83+ # ⚠️ Risk: High. Jagged text edges; font fingerprint differs from standard browsers (detected by advanced anti-bots)
84+ font : false
6485
6586 # [Global Proxy] Used if an Instance does not have its own proxy configuration
6687 proxy :
@@ -113,6 +134,26 @@ browser:
113134| ` headless ` | boolean | ` false ` | Whether to enable headless mode. |
114135| ` fission ` | boolean | ` true ` | Whether to enable Site Isolation (fission.autostart). |
115136| ` proxy ` | object | - | Global proxy configuration. |
137+ | ` cssInject ` | object | - | CSS performance injection configuration. |
138+
139+ #### CSS Injection (cssInject)
140+
141+ Performance optimization options for CPU-Only environments. Reduces CPU load by disabling specific web effects via CSS injection.
142+
143+ | Item | Type | Default | Description |
144+ | --- | --- | --- | --- |
145+ | ` animation ` | boolean | ` false ` | ** Disable Animations** (Recommended)<br >Effect: Removes transition and animation.<br >Benefit: Significantly reduces continuous CPU usage.<br >Risk: Very Low (Negligible impact on fingerprint). |
146+ | ` filter ` | boolean | ` false ` | ** Disable Effects** <br >Effect: Removes blur, box-shadow, etc.<br >Benefit: Prevents UI lag caused by complex rendering.<br >Risk: Medium (UI Aesthetics degraded, rarely checked by anti-bots). |
147+ | ` font ` | boolean | ` false ` | ** Fast Rendering Fonts** <br >Effect: Disables font anti-aliasing.<br >Benefit: Slightly reduces rendering pressure.<br >Risk: ** High** (Font fingerprint anomaly, easily detected by advanced anti-bots). |
148+
149+ ### Backend Resource Pool (backend.pool)
150+
151+ | Item | Type | Default | Description |
152+ | --- | --- | --- | --- |
153+ | ` strategy ` | string | ` least_busy ` | Load balancing strategy. Option: ` least_busy ` . |
154+ | ` failover.enabled ` | boolean | ` true ` | Whether to enable automatic failover. |
155+ | ` failover.maxRetries ` | number | ` 2 ` | Maximum retry attempts for failover. |
156+ | ` instances ` | array | - | List of browser instances. See [ Instances Configuration] ( /en/config/instances ) . |
116157
117158### Adapter Configuration (backend.adapter)
118159
0 commit comments