You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a chrome extension in manifest v3 and I would like to use the userfeedback dialog
beforeSend(event, hint) {
// Check if it is an exception, and if so, show the report dialog
if (event.exception) {
Sentry.showReportDialog({ eventId: event.event_id });
}
return event;
},
However, I am blocked by the mv3 content security policy
Refused to load the script 'https://.......ingest.sentry.io/api/embed/error-page/?dsn=......&eventId=82c9c312030d497080eb7575167ba7ec' because it violates the following Content Security Policy directive: "script-src 'self' 'wasm-unsafe-eval'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.
Has anyone figure out a solution for this issue? any way I can run a local script and override the remote one?
Thank you all for your help and guidance
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello
I am developing a chrome extension in manifest v3 and I would like to use the userfeedback dialog
However, I am blocked by the mv3 content security policy
Has anyone figure out a solution for this issue? any way I can run a local script and override the remote one?
Thank you all for your help and guidance
Beta Was this translation helpful? Give feedback.
All reactions