disable middle mouse paste

This commit is contained in:
oneflux 2025-04-22 13:45:43 -07:00
parent e1885d82ef
commit 07f8bd2b25
2 changed files with 5 additions and 1 deletions

View file

@ -78,3 +78,4 @@ $ python3 multibuild.py --target linux --arch x86_64 arm64
- [GrapheneOS](https://github.com/GrapheneOS) - Hardened memory allocator
- [Mullvad](https://mullvad.net/) - Adblock DNS-over-HTTPS
- [Firefox-hardened](https://github.com/boredsquirrel/Firefox-hardened) - Mozconfig options
- [Trivalent](https://github.com/secureblue/Trivalent) - Hardening options

View file

@ -683,4 +683,7 @@ defaultPref("javascript.options.ion", false);
defaultPref("javascript.options.warp", false);
// Disable Unicode domain names to prevent homograph attacks
defaultPref("network.IDN_show_punycode", true);
defaultPref("network.IDN_show_punycode", true);
// Disable middle-mouse paste
defaultPref("middlemouse.paste", false);