user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 01a978e33ae649e366fd2796dacd5aa145d276a4
parent 6717bc0674b92078971da41b712cf3668440bb87
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Tue, 11 Sep 2018 16:43:18 +0000

add 0864: dom.forms.datetime, closes #495
Diffstat:
Muser.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/user.js b/user.js @@ -558,6 +558,10 @@ user_pref("browser.formfill.enable", false); * [SETTING] Privacy & Security>History>Custom Settings>Remember my browsing and download history * [NOTE] You can clear history and downloads on exiting Firefox (see 2803) ***/ // user_pref("places.history.enabled", false); +/* 0864: disable date/time picker (FF57+ default true) + * This can leak your locale if not en-US + * [1] https://trac.torproject.org/projects/tor/ticket/21787 ***/ +user_pref("dom.forms.datetime", false); /* 0870: disable Windows jumplist [WINDOWS] ***/ user_pref("browser.taskbar.lists.enabled", false); user_pref("browser.taskbar.lists.frequent.enabled", false);