32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // RFP
 | |
| user_pref("privacy.resistFingerprinting", true);
 | |
| user_pref("privacy.resistFingerprinting.letterboxing", true);
 | |
| 
 | |
| // DNS
 | |
| user_pref("network.trr.mode", 5); // Disable DoH to use network resolver
 | |
| 
 | |
| user_pref("signon.rememberSignons", false); // Do not prompt to save password
 | |
| 
 | |
| // [SETTING] Privacy & Security>Forms and Autofill>Autofill addresses
 | |
| user_pref("extensions.formautofill.addresses.enabled", false); // [FF55+]
 | |
| user_pref("extensions.formautofill.creditCards.enabled", false); // [FF56+]
 | |
| 
 | |
| // 0401: disable SB (Safe Browsing)
 | |
| // SB makes connections to Google
 | |
| user_pref("browser.safebrowsing.malware.enabled", false);
 | |
| user_pref("browser.safebrowsing.phishing.enabled", false);
 | |
| // 0402: disable SB checks for downloads (both local lookups + remote)
 | |
| user_pref("browser.safebrowsing.downloads.enabled", false);
 | |
| // 0404: disable SB checks for unwanted software
 | |
| user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false);
 | |
| user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false);
 | |
| 
 | |
| // 5508: disable all DRM content (EME: Encryption Media Extension)
 | |
| user_pref("media.eme.enabled", false);
 | |
| // Disables UI setting which also disables the DRM prompt
 | |
| user_pref("browser.eme.ui.enabled", false);
 | |
| 
 | |
| /* 0830: enable separate default search engine in Private Windows and its UI setting
 | |
|  * [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/
 | |
| user_pref("browser.search.separatePrivateDefault", false); // [FF70+]
 | 
