firefox: allow autoplay of muted video

This is unfair to other formats like GIF.
This commit is contained in:
Vincent Bernat 2021-07-17 12:41:59 +02:00
parent 25427b2390
commit 333c32e7df

View file

@ -51,8 +51,8 @@ user_pref("browser.tabs.tabClipWidth", 1000);
user_pref("full-screen-api.warning.timeout", 0); user_pref("full-screen-api.warning.timeout", 0);
user_pref("full-screen-api.transition.timeout", 0); user_pref("full-screen-api.transition.timeout", 0);
// Don't autoplay videos (even without audio) // Don't autoplay videos (except when no audio)
user_pref("media.autoplay.default", 5); user_pref("media.autoplay.default", 1);
// Remove some annoying animations (notably when going full screen) // Remove some annoying animations (notably when going full screen)
user_pref("toolkit.cosmeticAnimations.enabled", false); user_pref("toolkit.cosmeticAnimations.enabled", false);