I am trying to create a Chrome batch application from a complex web application. I am currently getting the error message:
The built-in event handler was denied execution because it violates the directive of the content security policy: "default-src" self 'chrome-extension-resource: ". Note that' script -src 'was not explicitly set, therefore' default-src 'used as a reserve.
How do I explicitly set a policy in my manifest.json? I tried things like:
"content_security_policy": "default-src 'inline'; script-src 'inline'"
but I still get the same error message. Is my syntax incorrect or a red herring error?
Ellen spertus
source share