From: Michael Orlitzky Date: Fri, 13 Mar 2026 15:41:44 +0000 (-0400) Subject: media: disable camera, microphone, and VR X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=a1ae68dc5ddf26e612beeec958980c3c99c0092b;p=firefox-user-prefs.git media: disable camera, microphone, and VR --- diff --git a/media b/media index 3737a82..9680ea1 100644 --- a/media +++ b/media @@ -6,3 +6,12 @@ * */ user_pref("media.webm.enabled", false); + + +/* Don't allow websites to access the camera, microphone, or VR headset + * + * Don't even let them ask. + */ +user_pref("permissions.default.camera", 2); +user_pref("permissions.default.microphone", 2); +user_pref("permissions.default.xr", 2);