![](https://private-user-images.githubusercontent.com/126674060/412519640-35794d47-f1ab-43d1-a27d-874a05b01906.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MzM0NTcsIm5iZiI6MTczOTYzMzE1NywicGF0aCI6Ii8xMjY2NzQwNjAvNDEyNTE5NjQwLTM1Nzk0ZDQ3LWYxYWItNDNkMS1hMjdkLTg3NGEwNWIwMTkwNi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNVQxNTI1NTdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hMmJlODI4ODA3OGVkYWE0Y2MyYjk3MWUzY2UxZDM0ZGJlZDRjZjdjNjdhNzE5ODRlNGUyMDc0MzAzODhmNjY2JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.D8xoy6EPBm4pm9B6Y6aEsdIQdgBZ59ASQ-Qmege1aqE)
This PowerShell script provides an easy-to-use GUI for modifying Google Chrome policies via Windows Registry to enhance Chrome’s functionality.
Click Here
-
Enable Hardware Acceleration
Uses GPU acceleration to improve performance. -
Disable Network Prediction
Prevents Chrome from preloading pages and DNS queries to save bandwidth and enhance privacy. -
Disable Tab Freezing
Prevents inactive tabs from being automatically suspended to save memory. -
Disable Memory Saver Mode
Keeps all tabs active instead of reducing memory usage by suspending unused ones. -
Disable Chrome Cleanup Tool
Disables Chrome’s built-in tool for scanning and removing harmful software. -
Disable Safe Browsing
Turns off Google’s phishing and malware protection. -
Disable Content Suggestions on New Tab Page
Stops Chrome from showing recommended articles. -
Disable Metrics and Data Collection
Prevents Chrome from sending anonymized data and usage statistics to Google. -
Disable Password Leak Detection
Stops Chrome from alerting you about compromised passwords. -
Disable Cloud Reporting
Prevents device event reports from being sent to Google. -
Disable Third-Party Cookies
Blocks websites from using third-party cookies for tracking. -
Enable Do Not Track
Sends a request to websites asking them not to track your browsing. -
Disable Device Activity and System Reporting
Prevents Chrome from logging and reporting device information, such as network events, system status, app usage, and more. -
Set DNS Over HTTPS Mode
Ensures secure DNS queries for private browsing. -
Disable Sync and Sign-in Features
Turns off Chrome's sync feature and disables sign-in to prevent tracking of your browsing activity. -
Disable Autofill and Password Manager
Disables Chrome’s autofill and password manager features for enhanced privacy. -
Disable Geolocation and Sensors
Blocks websites from accessing your device's location and sensors (like accelerometer, gyroscope). -
Disable Screen and Audio/Video Capture
Prevents websites from capturing your screen, audio, or video. -
Disable Translation and Spell Checking
Turns off Chrome's translation service and spell check to prevent sending your data to Google. -
Block WebSQL and Contextual Search
Disables WebSQL database usage and contextual search to prevent tracking and unwanted data collection. -
Prevent Browser Data Collection on Exit
Ensures that Chrome doesn't collect browsing data on exit. -
Enable Https-Only Mode
Forces Chrome to load only secure HTTPS connections.
- Open PowerShell and paste the command below
iwr "https://raw.githubusercontent.com/ltx0101/StealthChrome/main/StealthChrome.ps1" -OutFile "StealthChrome.ps1"; .\StealthChrome.ps1
-
Configure Policies
Once the script runs, you will see a graphical interface with options for configuring general Chrome policies and privacy settings. -
Apply Policies
Select the desired policies and click on the "Apply Selected Policies" button. The script will automatically configure the Chrome policies in the registry. -
Reset to Default
If you want to reset all policies to their default values, click on the "Reset to Default" button. This will remove the custom policies from the registry.
Click Here
If you encounter the error "Running Scripts is Disabled on this System", it means that PowerShell's execution policy is preventing scripts from running for security reasons.
To resolve this, follow these steps:
-
Open PowerShell as Administrator
-
Change the Execution Policy
Run the following command in the PowerShell window to allow locally-created scripts to run:Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
This script is designed to enhance privacy and security by disabling certain tracking and data-collection features of Google Chrome. Use it to lock down Chrome's settings for a more private browsing experience. Be cautious when running this on a shared machine or environment, as it modifies system-wide registry keys.