From 5178247f9a9361e2e533471bd950873c29d55605 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 15 Feb 2020 18:29:18 +0100 Subject: [PATCH] firefox: don't autoplay videos --- firefox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firefox.js b/firefox.js index 2667c84..6ad5da2 100644 --- a/firefox.js +++ b/firefox.js @@ -31,6 +31,9 @@ user_pref("browser.ctrlTab.recentlyUsedOrder", false); user_pref("full-screen-api.warning.timeout", 0); user_pref("full-screen-api.transition.timeout", 0); +// Don't autoplay videos (even without audio) +user_pref("media.autoplay.default", 5); + // Remove some annoying animations (notably when going full screen) user_pref("toolkit.cosmeticAnimations.enabled", false);