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
Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-4lndvGzcMkUnvdfuDCzL0sOEfIW9cdivCN8IPHGBevM='), or a nonce ('nonce-...') is required to enable inline execution.
popup.html:121 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' 'wasm-unsafe-eval'". Either the 'unsafe-inline' keyword, a hash ('sha256-4lndvGzcMkUnvdfuDCzL0sOEfIW9cdivCN8IPHGBevM='), or a nonce ('nonce-...') is required to enable inline execution.
I'm not getting any error message in the console within extension popup (only the log message) but bootstrap multiselect is not showing, only a button "None selected".
Note: As far I understand manifest version 3 doesn't support 'unsafe-inline' directive.
The text was updated successfully, but these errors were encountered:
Turns out I'm using Bootstrap v5 which isn't supported #1226
Surprised the guide doesn't mention this, would be great to have a note just like max jQuery v 2.x is pointed out,
Ideally a check that throws an error in the console.
Also then popper.js was missing for the dropdown, neither found any reference within the guide on this one.
See my post on Stackoverflow:
I saved jQuery, Bootstrap & Boostrap Multiselect into the chrome extension and loaded them within popup.js as per guide on the plugins page.
Popup.html
since I can't initialise the plugin within popup.html
as I get the error:
thus I placed it into popup.js
I'm not getting any error message in the console within extension popup (only the log message) but bootstrap multiselect is not showing, only a button "None selected".
Note: As far I understand manifest version 3 doesn't support 'unsafe-inline' directive.
The text was updated successfully, but these errors were encountered: