Replies: 2 comments 1 reply
-
The same error can also be reproduced by disable the "Privacy & Security --> Screen Record" for normal Chrome. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I am able to get ride of the exception without using import { defineRunnerConfig } from "wxt";
export default defineRunnerConfig({
startUrls: ["https://www.youtube.com"],
disabled: true,
}); But hot reload is not working any more. Is there a way to make hot reload working again? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was getting error of "Permission denied by system" when using
navigator.mediaDevices.getUserMedia
when I use the chrome browser launched bywxt
. The error does not happen when I use my normal Chrome.For example, this extension works fine on my own Chrome https://github.com/hacess/chrome-extension-manifest-v3-window-recording
But when I was using wxt and load the extension using the browser launched from wxt, it fails on permission error.
When I load this extension using my normal Chrome browser, there is no error.
I raise the discussion using this extension, and load the extension using the browser from wxt because I was building my own extension using the api
navigator.mediaDevices.getUserMedia
and got the same error.I suppose there is some weird thing happened when Chrome is launched from wxt?
Also, is there a way to just use my local Chrome browser, not the one started by wxt (I understand that they both use the same Chrome but using different command line argument)?
Beta Was this translation helpful? Give feedback.
All reactions