11 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	If you need browser extensions, try the Privacy Guides page.
Chromium flags
These can generally be found from about:flags on
Chromium based browsers, for Vivaldi explicit
vivaldi://flags is required and it also has
chrome://settings for the usual Chromium settings.
- #enable-quic- enabled
- #enable-force-dark- enabled with increased text constract
- #force-color-profile- sRGB
- #trust-tokens- enabled
Vendor-prefixed
These likely also exist, but just without the vendor-
part when searhcing.
- #edge-automatic-https- enabled
- #edge-autoplay-user-setting-block-option
- #edge-tab-groups- enabled
- #edge-tab-groups-auto-create- enabled
- #edge-tab-groups-collapse-freezing- enabled
Firefox about:config
- privacy.firstparty.isolateto- truefor preventing domains from accessing each other’s data.
- browser.newtabpage.activity-stream.showSponsored&- browser.newtabpage.activity-stream.showSponsoredto- falseto stop sponsored links.
- dom.security.https_only_modeto- trueto force HTTPS and not need HTTPS Everywhere
- security.certerrors.mitm.auto_enable_enterprise_rootsto- falsein order to not trust system CA store in case of enterprise MITM
- security.OCSP.requireto- truein order to not allow OCSP soft fail. This may be a bit paranoid, but only the paranoid survive.
- privacy.resistFingerprinting.letterboxing=- trueso letterboxing is used to hide real browser size. Tor Browser support
- (On Linux widget.content.gtk-theme-override(a string that has to be created by user) toAdwaita:lightso text boxes in dark themes become readable, thank you Dovydas Venckus
- image.animation_modeto- oncein order to have gifs play once and then stop everywhere (- noneto never have them play).
- geo.provider.network.urlto- https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%in order to send nearby WiFi networks to Mozilla instead of Google. See also MLS Software.
- network.IDN_show_punycodeto- truein order to see punycode instead of UTF-8 in case of spoofing attempt. However makes reading non-ASCII domains painful. E.g. Cyrillic alphabet
- reader.parse-on-load.force-enabledto- truein order to allow reader use to be used on ~all websites and devices (regardless of low RAM?)
Future note: network.dns.blockDotOnion;false
?
DNS over HTTPS
- network.trr.modedepends,- 2to prefer DoH, but fallback to system resolver,- 3to enforce DoH without fallback) or- 5to explicitly disable.- DoH is required by Firefox ESNI support which encrypts SNI which would still leak which sites you visit. Another bug about ESNI + Android DoT
- Are you using a VPN? Do they provide a DoH server? If yes, maybe the answer is 3 for eSNI?
 
- network.trr.early-AAAA- trueto hopefully prefer IPv6
- network.trr.urifor the actual resolver address, e.g.- https://doh.mullvad.net/dns-query
Some notes: * You can confirm TRR working by visiting
about:networking#dns where you should be seeing DNS cache
of Firefox and a lot of TRR: true. * While
investingating how Android 9 Private DNS works, I also wrote a DNS
provider comparsion here on 2019-07-11
SSDs
This information is from Arch Wiki on Firefox tweaks
- browser.cache.disk.enableto- falseto only cache to RAM.
- (browser.cache.memory.enabletotruewhich should be default)
- browser.sessionstore.intervalto- 600000in order to only store open session every ten minutes (instead of 15 seconds) in case of crashes.- alternatively browser.sessionstore.resume_from_crashtofalseto not store the session data for crash recovery at all. I think this may be the more healthy option with all the information flood and dozens of tabs.
 
- alternatively 
Why?
Every object loaded (html page, jpeg image, css stylesheet, gif banner) is saved in the Firefox cache for future use without the need to download it again. It is estimated that only a fraction of these objects will be reused, usually about 30%. This because of very short object expiration time, updates or simply user behavior (loading new pages instead of returning to the ones already visited). The Firefox cache is divided into memory and disk cache and the latter results in frequent disk writes: newly loaded objects are written to memory and older objects are removed.
Firefox stores the current session status (opened urls, cookies, history and form data) to the disk on a regular basis. It is used to recover a previous session in case of crash. The default setting is to save the session every 15 seconds, resulting in frequent disk access.
and this is the reason why Firefox is at times accused of killing SSDs.
Changelog: GitHub.com commits | gitea.blesmrt.net commits