From 69c278c3bad2076b85e5b5e19a1efd0823a7a0c8 Mon Sep 17 00:00:00 2001 From: earthlng Date: Mon, 20 Nov 2017 11:26:03 +0100 Subject: [PATCH] 2630: accessibility.force_disabled => 1 Prevent accessibility services from accessing your browser --- user.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/user.js b/user.js index 8fb0e98..4e85fd4 100644 --- a/user.js +++ b/user.js @@ -1347,6 +1347,10 @@ user_pref("browser.uitour.url", ""); /* 2629: disable remote JAR files being opened, regardless of content type (FF42+) * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1173171 ***/ user_pref("network.jar.block-remote-files", true); +/* 2630: prevent accessibility services from accessing your browser + * [SETTING] Options>Privacy & Security>Permissions>Prevent accessibility services from accessing your browser + * [1] https://support.mozilla.org/kb/accessibility-services ***/ +user_pref("accessibility.force_disabled", 1); /* 2662: disable "open with" in download dialog (FF50+) * This is very useful to enable when the browser is sandboxed (e.g. via AppArmor) * in such a way that it is forbidden to run external applications.