install.sh now installs ublock origin

This commit is contained in:
hnhx 2023-02-14 20:15:01 +01:00
parent 5502ce3a6f
commit c5244f1f2b
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@
## About this user.js
This user.js aims at disabling all Firefox telemetry (spyware), it also hardens the browser and replaces the spyware search engines with privacy respecting ones.
This user.js aims at disabling all Firefox telemetry (spyware), it also hardens the browser, installs uBlock Origin and replaces the spyware search engines with privacy respecting ones.
<br>

View File

@ -3,4 +3,7 @@
pkill firefox
rm -rf $HOME/.mozilla/firefox/*.default-release/*
cp firefox/* $HOME/.mozilla/firefox/*.default-release
echo "Done, you can open Firefox now!"
ublock_version="1.46.0"
wget -O ublock_origin-$ublock_version.xpi https://addons.mozilla.org/firefox/downloads/file/4047353/ublock_origin-$ublock_version.xpi
nohup firefox ublock_origin-$ublock_version.xpi &