From ce61d1ed895b166d3af2f1858b158c65b6005dd0 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 27 Sep 2023 23:56:48 +0200 Subject: [PATCH] firefox: disable automatic popup for translations --- dotfiles/firefox.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dotfiles/firefox.js b/dotfiles/firefox.js index 8ed9586..007b8d5 100644 --- a/dotfiles/firefox.js +++ b/dotfiles/firefox.js @@ -95,5 +95,9 @@ user_pref("browser.safebrowsing.malware.enabled", false); // Don't trim URLs user_pref("browser.urlbar.trimURLs", false); +// Don't offer translating +user_pref("browser.translations.automaticallyPopup", false); +user_pref("browser.translations.panelShown", true); + // Enable userContent.css (disabled) user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", false);