Danisco212
Danisco212
I made a PR to fix this issue. https://github.com/arshigtx/react-native-custom-switch/pull/2
Guide in https://developer.chrome.com/docs/extensions/reference/action/#icon states to use an experimental api ```OffScreenCanvas``` which can be used by executing the command ```yarn add @types/offscreencanvas``` Creating canvas animation using document.createElement('canvas') in place of OffScreenCanvas...
Note the operations for changing extension icon for animations, transitions or just static images can only be carried out in the background script or the popup script for MV3. Thus...
The CSP issue is caused by an eval function being called in the background.js file that is compiled by webpack. A temporary solution is: add the following script-src directive value...
Changing the href through code something like this ``` const link = document.querySelector('link[rel="monetization"]') link.href= "https://google.com" ``` The icon remains with a full green icon, and the popup states it's still...