A fingerprint browser based on Ungoogled Chromium
.
Please download the version suitable for your system from the links below. Each major version of Chromium is compiled into a corresponding release. Choose the appropriate version for your operating system:
Version | Source Code | Windows | Linux |
---|---|---|---|
Chrome 131 | 131.0.6778.264 | 131.0.6778.264-1_linux.tar.xz | |
Chrome 130 | 130.0.6723.116 | Installer ZIP |
130.0.6723.116-1_linux.tar.xz |
Chrome 129 | 129.0.6668.100 | Installer ZIP |
129.0.6668.100-1_linux.tar.xz |
You can find the compiled versions for each major Chromium release on the GitHub Release page. Download the appropriate file for your platform.
Refer to the ungoogled-chromium
documentation. Simply replace the ungoogled-chromium
submodule URL with the fingerprint-browser
repository URL.
🌟 EasyChat - Claude Mirror Site
A convenient platform for Chinese users to access Claude's AI services: no registration, direct access, and free to use.
🔗 Visit now: https://easychat.top
Fingerprint | Description | Command Line Arguments |
---|---|---|
User-Agent | Modify the browser's User-Agent , including navigator.userAgent , navigator.platform , navigator.userAgentData , and Client Hints |
--fingerprint-platform --fingerprint-platform-version --fingerprint-brand (131+) --fingerprint-brand-version (131+) |
Audio | Obfuscate or spoof audio fingerprint data | --fingerprint (activated when fingerprint seed is enabled) |
Plugin | Modify plugin-related features | --fingerprint (activated when fingerprint seed is enabled) |
Hardware | Customize hardware parameters such as CPU cores and memory size | --fingerprint --fingerprint-hardware-concurrency |
Font | Modify system font information | --fingerprint (activated when fingerprint seed is enabled) |
Canvas Image Data Noise | Add noise to canvas image data, modifying up to 10 pixels to interfere with fingerprinting | --fingerprinting-canvas-image-data-noise |
Canvas MeasureText Noise | Scale Canvas::measureText() output by a random factor between -0.0003% and 0.0003% , recalculated at each document initialization |
--fingerprinting-canvas-measuretext-noise |
ClientRects Noise | Scale getClientRects() and getBoundingClientRect() output by a random factor between -0.0003% and 0.0003% , recalculated at each document initialization |
--fingerprinting-client-rects-noise |
WebRTC Policy | Disable non-proxied UDP connections by default, preventing real IP address leaks via WebRTC | --disable-non-proxied-udp (enabled by default) |
Language Support | Set the browser language and accepted languages | --lang (set browser language) --accept-lang (set accepted languages) |
Timezone Support | Set the browser timezone | TZ environment variable (e.g., TZ=Asia/Shanghai ) |
Optimized for automation scenarios, offering the following features:
-
Fake Shadow DOM Support
Adds thefakeShadowRoot
property, equivalent to theshadowRoot
property, enabling access to Closed Shadow Root for easier automation handling. -
Avoid CDP Detection
Prevents Chrome DevTools Protocol (CDP) detection when invokingRuntime.enable
, enhancing stealthiness for automation tools.
You can enable or customize fingerprinting and privacy protection features by passing command line arguments when launching the browser:
Command Line Argument | Description |
---|---|
--fingerprint |
Specify the fingerprint seed (seed). Most fingerprint features are activated when this is set. |
--fingerprint-platform |
Specify the operating system type: windows , linux , or macos . |
--fingerprint-platform-version |
Specify the operating system version. Defaults to the browser's default version if unspecified. |
--fingerprint-brand |
Specify the browser brand in User-Agent . |
--fingerprint-brand-version |
Specify the version for the specified browser brand. |
--fingerprint-hardware-concurrency |
Specify the number of CPU cores. If unspecified, this is randomly generated based on the seed. |
--fingerprinting-canvas-image-data-noise |
Enable canvas image data noise to interfere with fingerprinting. |
--fingerprinting-canvas-measuretext-noise |
Enable proportional scaling noise for canvas measureText() fingerprints. |
--fingerprinting-client-rects-noise |
Enable proportional scaling noise for getClientRects() and getBoundingClientRect() . |
--disable-non-proxied-udp |
Specify WebRTC policy. Default: disable non-proxied UDP connections (recommended to leave unset). |
--lang --accept-lang |
Set the browser language. |
Chrome 131 introduces two new command line arguments for advanced customization of User-Agent
and User-Agent Data
:
-
--fingerprint-brand
- Specifies the browser brand for
User-Agent
andUser-Agent Data
. - Supported values:
Chrome
,Edge
,Opera
,Vivaldi
, or a custom brand name.
- Specifies the browser brand for
-
--fingerprint-brand-version
- Specifies the version number for the specified brand.
- Defaults exist for
Chrome
,Edge
,Opera
, andVivaldi
, but you can provide custom versions.
These arguments enhance browser environment simulation for automation and testing. If --fingerprint-brand
is omitted, the default brand is used.
BSD-3-clause. See LICENSE