summaryrefslogtreecommitdiffstats
path: root/.config/firefox/larbs.js
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2025-03-15 14:46:54 +0100
committerMaksymilian Jopek <maks@jopek.eu>2025-03-15 14:46:54 +0100
commitd7c8b912e63c9a112d75f6b9e2e3f5d3c6975240 (patch)
tree8731b82a7d16240d3fea1175d02f55dd15e2abf2 /.config/firefox/larbs.js
parent5f385da9f686ffb9ab61c194a46539cbe53357ea (diff)
downloadeibhear-d7c8b912e63c9a112d75f6b9e2e3f5d3c6975240.tar.gz
eibhear-d7c8b912e63c9a112d75f6b9e2e3f5d3c6975240.tar.zst
eibhear-d7c8b912e63c9a112d75f6b9e2e3f5d3c6975240.zip
Eibhear: Initial commit
Some file deletion, small changes, some addition
Diffstat (limited to '.config/firefox/larbs.js')
-rw-r--r--.config/firefox/larbs.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/.config/firefox/larbs.js b/.config/firefox/larbs.js
deleted file mode 100644
index 8328357..0000000
--- a/.config/firefox/larbs.js
+++ /dev/null
@@ -1,47 +0,0 @@
-// 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);
-
-// Don't autodelete cookies on shutdown:
-user_pref("privacy.clearOnShutdown.cookies", false);
-
-// Enable custom userChrome.js:
-user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
-
-// This could otherwise cause some issues on bank logins and other annoying sites:
-user_pref("network.http.referer.XOriginPolicy", 0);
-
-// Disable Firefox sync and its menu entries
-user_pref("identity.fxaccounts.enabled", false);
-
-// Fix the issue where right mouse button instantly clicks
-user_pref("ui.context_menus.after_mouseup", true);