I read about Content Security Policy from: http://developer.chrome.com/extensions/contentSecurityPolicy.html
It is mentioned there that: "If you have a need for some external JavaScript or object resources, you can relax the policy to a limited extent by whitelisting secure origins from which scripts should be accepted"
The example shows that you need to add to your manifest.json this line:
"content_security_policy": "script-src 'self' https://example.com; object-src 'self'"
but if I want not only to support https://example.com, but every web site?
btw - is it also possible to include "Evaluated JavaScript": 'unsafe-eval'
to that?
what should I write instead?