2022-02-19 09:29:32 +00:00
|
|
|
/* See https://github.com/arkenfox/user.js/wiki/3.2-Overrides-%5BCommon%5D */
|
|
|
|
|
|
|
|
/* override recipe: RFP is not for me ***/
|
|
|
|
user_pref("privacy.resistFingerprinting", false); // 4501
|
|
|
|
user_pref("privacy.resistFingerprinting.letterboxing", false); // 4504 [pointless if not using RFP]
|
|
|
|
user_pref("webgl.disabled", false); // 4520 [mostly pointless if not using RFP]
|
|
|
|
|
|
|
|
/* override-recipe: desktop: alter new window max sizes **/
|
|
|
|
// user_pref("privacy.window.maxInnerWidth", "200s"); // 4502 [default 1600 in user.js v95]
|
|
|
|
// user_pref("privacy.window.maxInnerHeight", "100s"); // 4502 [default 900 in user.js v95]
|
|
|
|
|
|
|
|
/* Enable green icons again */
|
|
|
|
user_pref("security.secure_connection_icon_color_gray", false);
|
|
|
|
user_pref("security.insecure_connection_icon.enabled", true);
|
|
|
|
user_pref("security.insecure_connection_icon.pbmode.enabled", true);
|
|
|
|
user_pref("security.insecure_connection_text.enabled", true);
|
2022-06-11 08:37:16 +00:00
|
|
|
user_pref("security.insecure_connection_text.pbmode.enabled", true);
|
2022-02-19 09:29:32 +00:00
|
|
|
|
|
|
|
/* Keep history */
|
|
|
|
user_pref("privacy.clearOnShutdown.history", false); // [DEFAULT: true]
|
|
|
|
user_pref("places.history.enabled", true);
|
|
|
|
user_pref("privacy.cpd.history", false); // 2812 to match when you use Ctrl-Shift-Del
|
|
|
|
|
|
|
|
/* Disable logins */
|
|
|
|
user_pref("services.sync.engine.passwords", false);
|
|
|
|
|
|
|
|
/* Enable faster scroll */
|
|
|
|
user_pref("general.smoothScroll", false);
|
|
|
|
user_pref("general.smoothScroll.pages", false);
|
|
|
|
user_pref("mousewheel.min_line_scroll_amount", 40);
|
|
|
|
|
2022-06-07 21:37:15 +00:00
|
|
|
/* Avoid non-playing, see https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1874808 */
|
|
|
|
user_pref("media.autoplay.blocking_policy", 1);
|
|
|
|
|
2022-02-19 09:29:32 +00:00
|
|
|
/* Do not warn about config */
|
|
|
|
user_pref("general.warnOnAboutConfig", false);
|
|
|
|
|
|
|
|
/* DNS over HTTPS
|
|
|
|
adjust the following to your liking
|
|
|
|
0 = use system DNS, 2 = use DNS-over-HTTPS resolver, select one in UI under network, otherwise you might end up with cloudflare
|
|
|
|
*/
|
|
|
|
user_pref("network.trr.mode", 0);
|
|
|
|
user_pref("network.trr.uri", "https://dns.myservermanager.com/dns-query");
|
|
|
|
user_pref("network.trr.resolvers", '[{ "name": "Cloudflare", "url": "https://mozilla.cloudflare-dns.com/dns-query" },{ "name": "NextDNS", "url": "https://trr.dns.nextdns.io/" },{ "name": "dnsforge.de", "url": "https://dnsforge.de/dns-query" },{ "name": "Digitale Gesellschaft (CH)", "url": "https://dns.digitale-gesellschaft.ch/dns-query" }, { "name": "Freifunk Muenchen", "url": "https://doh.ffmuc.net" }, { "name": "BlahDNS (DE)", "url": "https://doh-de.blahdns.com/dns-query" }, { "name": "BlahDNS (FI)", "url": "https://doh-fi.blahdns.com/dns-query" }, { "name": "Quad9", "url": "https://dns.quad9.net/dns-query" }, { "name": "dns.myservermanager.com", "url": "https://dns.myservermanager.com/dns-query" }]');
|
|
|
|
|
|
|
|
/* Disable some default extensions */
|
|
|
|
user_pref("extensions.pocket.enabled", false);
|
|
|
|
user_pref("extensions.screenshots.disabled", true);
|
|
|
|
user_pref("extensions.systemAddon.update.enabled", false);
|
|
|
|
|
|
|
|
/* Enable keyword search */
|
|
|
|
user_pref("keyword.enabled", true);
|
|
|
|
user_pref("browser.search.suggest.enabled", true);
|
2022-06-07 21:37:15 +00:00
|
|
|
user_pref("browser.urlbar.suggest.searches", true);
|