I am trying to load a javascript file dynamically using jQuery.getScript
in my Chrome App. The script file is also residing in my local application package directory. But unfortunately, it's giving this error:
Refused to execute inline script because it violates the following Content Security Policy directive: "default-src 'self' chrome-extension-resource:". Either the 'unsafe-inline' keyword, a hash ('sha256-DwKWwwx2UjO8OY5zLIQ4qwwAhk2h3hAP48ROwlZJCNo='), or a nonce ('nonce-...') is required to enable inline execution. Note also that 'script-src' was not explicitly set, so 'default-src' is used as a fallback.
Is there any workaround to this?