ylliX - Online Advertising Network

I am trying to access user microphone from offscreen – Chrome Extension Manifest V3

I was managed to get access to video stream & system audio using await navigator.mediaDevices.getDisplayMedia({audio: true, video: true}); But I need also access to microphone. I tried to use navigator.mediaDevices.getUserMedia({video: false, audio: true})` inside offscreen. But i am getting Error: Not supported error Possible solve (not wanted) I could just open page using chrome.tabs.create or […]