+
+
+
+ updateFingerprintConfig(
+ "navigator.userAgent",
+ e.target.value || undefined,
+ )
+ }
+ placeholder="Mozilla/5.0..."
+ />
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.platform",
+ e.target.value || undefined,
+ )
+ }
+ placeholder="e.g., MacIntel, Win32"
+ />
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.appVersion",
+ e.target.value || undefined,
+ )
+ }
+ placeholder="e.g., 5.0 (Macintosh)"
+ />
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.oscpu",
+ e.target.value || undefined,
+ )
+ }
+ placeholder="e.g., Intel Mac OS X 10.15"
+ />
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.hardwareConcurrency",
+ e.target.value ? parseInt(e.target.value, 10) : undefined,
+ )
+ }
+ placeholder="e.g., 8"
+ />
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.maxTouchPoints",
+ e.target.value ? parseInt(e.target.value, 10) : undefined,
+ )
+ }
+ placeholder="e.g., 0"
+ />
+
+
+
+
+
+
+
+
+ updateFingerprintConfig(
+ "navigator.language",
+ e.target.value || undefined,
+ )
+ }
+ placeholder="e.g., en-US"
+ />
+