My extension communicate with my app using WebSocket on localhost (127.0.0.1). It works perfectly on Google Chrome or Firefox. But on Safari 14, I get :
I've tried to add this :
in the manifest.json
With no success. Anyone has a clue?
Code Block Refused to connect to ws://127.0.0.1:51465/ because it does not appear in the connect-src directive of the Content Security Policy.
I've tried to add this :
Code Block "content_security_policy": "script-src 'self';object-src 'self';connect-src 'ws://127.0.0.1:*/'
in the manifest.json
With no success. Anyone has a clue?