Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 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: 2024-10-11T00:32:53.000Z (3 months ago)
- Last Synced: 2024-12-28T20:08:16.842Z (13 days 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: 168
- Watchers: 5
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FireFox Privacy Script
[![Sponsor](https://img.shields.io/badge/Sponsor-Click%20Here-ff69b4)](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
```