diff --git a/README.md b/README.md index 94f2e51..5bb07d1 100644 --- a/README.md +++ b/README.md @@ -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.
diff --git a/install.sh b/install.sh index dc8e206..e8d3152 100755 --- a/install.sh +++ b/install.sh @@ -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!" \ No newline at end of file + +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 &