forked from amnweb/firefox-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.js
49 lines (48 loc) · 2.21 KB
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Style firefox
//user_pref("browser.startup.preXulSkeletonUI", false);
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
user_pref("svg.context-properties.content.enabled", true);
user_pref("layout.css.color-mix.enabled", true);
user_pref("layout.css.light-dark.enabled", true);
user_pref("browser.tabs.tabMinWidth", 66);
user_pref("browser.tabs.tabClipWidth", 86);
user_pref("fp.tweak.autohide-bookmarks", true);
user_pref("fp.tweak.macos-button", false);
user_pref("fp.tweak.rounded-corners", true);
user_pref("fp.tweak.sidebar-enabled", false);
// disable spell checking
user_pref("layout.spellcheckDefault", 0);
// disable auto install updates
user_pref("app.update.auto", false);
// disable background service to install updates
user_pref("app.update.service.enabled", false);
// open tabs to the right of the current tab
user_pref("browser.tabs.insertAfterCurrent", true);
// enable dark-mode
user_pref("browser.in-content.dark-mode", true);
user_pref("ui.systemUsesDarkTheme", 1);
// restore previous session
user_pref("browser.startup.page", 3);
// disable data collection & crash reports
user_pref("datareporting.healthreport.uploadEnabled", false);
// disable WebRTC leaks
user_pref("media.peerconnection.enabled", false);
// allow search sugggestions in private windows
user_pref("browser.search.suggest.enabled.private", true);
// Disables geolocation and firefox logging geolocation requests.
user_pref("geo.enabled", false);
user_pref("geo.wifi.uri", "");
user_pref("browser.search.geoip.url", "");
// Only send pings if send and receiving host match (same website).
user_pref("browser.send_pings.require_same_host", true);
// Disable telemetry
user_pref("toolkit.telemetry.enabled", false);
// Disable (Windows-only) scheduled task which runs in the background to collect and submit data about the browser
user_pref("default-browser-agent", false);
// Better font rendering
//user_pref("gfx.webrender.quality.force-subpixel-aa-where-possible",true);
//user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
// Disable Container Tabs
//user_pref("privacy.userContext.enabled",false);
//user_pref("privacy.userContext.ui.enabled",false);
//user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", false);