Automatically disables automatic gain control, noise suppression, echo cancellation and the highpass filter on Jitsi Meetings
// ==UserScript==
// @name Disable audio processing on meet.jit.si
// @description Automatically disables automatic gain control, noise suppression, echo cancellation and the highpass filter on Jitsi Meetings
// @namespace greasyfork.org
// @version 1.0
// @include *meet.jit.si*
// ==/UserScript==
(function() {
'use strict';
var loc = window.top.location.toString();
if(loc.indexOf('config.disableAP=true')==-1){
loc += '#config.disableAP=true'
window.location.href = loc;
window.location.reload(true)
}
})();