summaryrefslogtreecommitdiffstats
path: root/.config/firefox
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2023-01-17 16:20:27 -0500
committerLuke Smith <luke@lukesmith.xyz>2023-01-17 16:20:27 -0500
commit56b61ca1d51da9341e9dd882106d111c8cff8b4b (patch)
tree9ba5dde47c83f45a49a627814a7da62ac31d6938 /.config/firefox
parentc8aa0495eb49d78f4f8ed6c3952c9a7d9d76ae12 (diff)
downloadeibhear-56b61ca1d51da9341e9dd882106d111c8cff8b4b.tar.gz
eibhear-56b61ca1d51da9341e9dd882106d111c8cff8b4b.tar.zst
eibhear-56b61ca1d51da9341e9dd882106d111c8cff8b4b.zip
add larbs user.js additions
Diffstat (limited to '.config/firefox')
-rw-r--r--.config/firefox/larbs.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/.config/firefox/larbs.js b/.config/firefox/larbs.js
new file mode 100644
index 0000000..452572f
--- /dev/null
+++ b/.config/firefox/larbs.js
@@ -0,0 +1,32 @@
+// These are changes made on top of the Arkenfox JS file to tweak it as
+// desired. Any of these settings can be overridden by the user.
+
+// Disable the Twitter/R*ddit/Faceberg ads in the URL bar:
+user_pref("browser.urlbar.quicksuggest.enabled", false);
+user_pref("browser.urlbar.suggest.topsites", false); // [FF78+]
+
+// Do not suggest web history in the URL bar:
+user_pref("browser.urlbar.suggest.history", false);
+
+// Do not prefil forms:
+user_pref("signon.prefillForms", false);
+
+// Do not autocomplete in the URL bar:
+user_pref("browser.urlbar.autoFill", false);
+
+// Enable the addition of search keywords:
+user_pref("keyword.enabled", true);
+
+// Allow access to http (i.e. not https) sites:
+user_pref("dom.security.https_only_mode", false);
+
+// Keep cookies until expiration or user deletion:
+user_pref("network.cookie.lifetimePolicy", 0);
+
+user_pref("dom.webnotifications.serviceworker.enabled", false);
+
+// Disable push notifications:
+user_pref("dom.push.enabled", false);
+
+// Disable the pocket antifeature:
+user_pref("extensions.pocket.enabled", false);