I want to add a js plugin to my page, this works in firefox and safari but does not work in chrome (latest version: 123.0)
I get this error in the console: [Violation] Permissions policy violation: microphone is not allowed in this document.
I have already included this plugin in the iframe and given the necessary permissions:
<iframe src="https://example.js" allow="camera https://example.js;microphone https://example.js;autoplay;display-capture;fullscreen;geolocation;picture-in-picture; speaker-selection;screen-wake-lock;web-share" id="xChatModal" class="modal" style="width: 100%; height: 25%; z-index: 100;">
How can I make this work for Chrome?