https://github.com/simeononsecurity/firefox-privacy-script
Implement the privacy oriented configurations for FireFox
https://github.com/simeononsecurity/firefox-privacy-script
firefox firefox-privacy-script powershell privacy privacy-policy privacy-protection
Last synced: 28 days ago
JSON representation
Implement the privacy oriented configurations for FireFox
- Host: GitHub
- URL: https://github.com/simeononsecurity/firefox-privacy-script
- Owner: simeononsecurity
- License: mit
- Created: 2020-08-17T08:01:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-22T07:38:00.000Z (about 1 month ago)
- Last Synced: 2025-03-28T15:06:57.303Z (about 1 month ago)
- Topics: firefox, firefox-privacy-script, powershell, privacy, privacy-policy, privacy-protection
- Language: Shell
- Homepage: https://simeononsecurity.com/github/firefox-privacy-script/
- Size: 33.2 MB
- Stars: 183
- Watchers: 5
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FireFox Privacy Script
[](https://github.com/sponsors/simeononsecurity)
Organizations like [PrivacyTools.io](https://www.privacytools.io/browsers/#about_config) and [ffprofile](https://ffprofile.com/) have suggested changes to make FireFox more secure and private.
These changes cover suggested browser extensions, blocking telemetry, disabling 3rd-party cookies, disabling trackers, etc.This script will take the pregenerated FireFox configuration files and install them in the proper directories on either Windows or Linux systems.
## Download the required files
Download the required files from the [GitHub Repository](https://github.com/simeononsecurity/FireFox-Privacy-Script)
## How to run the script
**The script may be launched from the extracted [GitHub download](https://github.com/simeononsecurity/FireFox-Privacy-Script/archive/master.zip) like this:**
### Windows PowerShell:
```powershell
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Unrestricted -Force
powershell -ExecutionPolicy Bypass -File "C:\Path\To\Your\sos-firefoxprivacy.ps1"
```#### Additional Flags for Windows:
- **Force Install:** To overwrite existing configuration files without prompting, use the `--force` flag:
```powershell
powershell -ExecutionPolicy Bypass -File "C:\Path\To\Your\sos-firefoxprivacy.ps1" --force
```- **Uninstall:** To remove all changes made by the script, use the `--uninstall` flag:
```powershell
powershell -ExecutionPolicy Bypass -File "C:\Path\To\Your\sos-firefoxprivacy.ps1" --uninstall
```### Linux and MacOS:
```bash
sudo chmod +x ./sos-firefoxprivacy.sh
sudo bash ./sos-firefoxprivacy.sh
```#### Additional Flags for Linux and MacOS:
- **Force Install:** To overwrite existing configuration files without prompting, use the `--force` flag:
```bash
sudo bash ./sos-firefoxprivacy.sh --force
```- **Uninstall:** To remove all changes made by the script, use the `--uninstall` flag:
```bash
sudo bash ./sos-firefoxprivacy.sh --uninstall
```