Mute sound?
-
Is there any way to mute the sound of the browser?
-
Use this code in "Browser >> Execute on every page load in browser"
var mute=function(tag){ var elems = document.getElementsByTagName(tag); for(var i = 0; i < elems.length; i++){ elems[i].muted=true; } } mute("video"); mute("audio"); document.addEventListener("DOMSubtreeModified", function(event) { mute("video"); mute("audio"); });
-
@Antonio Thank you!
-
@Antonio Actually, it seems like I'm still getting sound o-o
-
@support @administrators Is there any solution to muting sound in browser? The script above did not work for me. Thanks guys.
-
@rekaa0251 This code is work!
Check it!
0_1512410772840_sound_off.xmlAlso, You can use Volume Mixer :D
-
@myweb101 Does not seem to work on all pages.