opencv-js-qrcode icon indicating copy to clipboard operation
opencv-js-qrcode copied to clipboard

基于opencv与wechat_qrcode实现的JS版二维码图像识别库

Results 2 opencv-js-qrcode issues
Sort by recently updated
recently updated
newest added
trafficstars

```javascript const cvQr = new OpencvQr({ dw: "file://detect.caffemodel", sw: "file://sr.caffemodel", }) ``` raise `Uncaught (in promise) TypeError: NetworkError when attempting to fetch resource.`

在manifest v3的浏览器拓展中,报错: ![2](https://github.com/user-attachments/assets/e5ef5b20-f219-44c2-bfcf-662ac7a3dc82) 具体报错位置: ![1](https://github.com/user-attachments/assets/618509c8-9ad1-4798-830e-d2bc2221fb59) 经过检查,发现manifest v3禁用了`'unsafe-eval'`: [内容安全政策](https://developer.chrome.com/docs/extensions/reference/manifest/content-security-policy?hl=zh-cn) ![3](https://github.com/user-attachments/assets/6a0d92c5-7489-4891-a0dd-1da2e7e5fcd9) 是否可以在编译时避免使用相关动态语法来解决这个问题?