diff options
Diffstat (limited to 'modules/firefox.nix')
| -rw-r--r-- | modules/firefox.nix | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/modules/firefox.nix b/modules/firefox.nix index c7bc6d9..8273651 100644 --- a/modules/firefox.nix +++ b/modules/firefox.nix @@ -10,6 +10,7 @@ ublock-origin istilldontcareaboutcookies sponsorblock + decentraleyes vimium-c ]; @@ -51,7 +52,6 @@ search.default = "startpage"; settings = { - "extensions.autoDisableScopes" = 0; }; userChrome = '' @@ -197,6 +197,15 @@ "toolkit.legacyUserProfileCustomizations.stylesheets" = true; "browser.toolbars.bookmarks.visibility" = "never"; + # Disable annoying translation popup + "browser.translations.automaticallyPopup" = false; + + # Enable all extensions automatically + "extensions.autoDisableScopes" = 0; + + # Hide ctr-tab tab preview menu + "browser.ctrlTab.sortByRecentlyUsed" = false; + # Hide pip controls "media.videocontrols.picture-in-picture.video-toggle.enabled" = false; @@ -254,4 +263,4 @@ }; }; }; -}
\ No newline at end of file +} |
