-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathhardened-firefox.sh
39 lines (26 loc) · 1.22 KB
/
hardened-firefox.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# This script will install Firefox on your system, set it as the default browser and harden it.
# Install Firefox
sudo apt install firefox
# Set Firefox as the default browser
xdg-settings set default-web-browser firefox.desktop
# Harden Firefox. install englisch language pack
sudo apt install firefox-locale-en
# Install uBlock Origin
firefox https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
# Install HTTPS Everywhere
firefox https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/
# Install NoScript
firefox https://addons.mozilla.org/en-US/firefox/addon/noscript/
# Install Decentraleyes
firefox https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/
# Install Privacy Badger
firefox https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/
# Install Cookie AutoDelete
firefox https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/
# Install CanvasBlocker
firefox https://addons.mozilla.org/en-US/firefox/addon/canvasblocker/
# Install uMatrix
firefox https://addons.mozilla.org/en-US/firefox/addon/umatrix/
# Install Firefox Multi-Account Containers
firefox https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/