I'm building a Chrome extension and using $.ajax (jsonp) to pull article titles and urls from a json array on a wordpress site.
If I GET from a https site, it works fine, however if I GET from a http site I get the following error.
Refused to load the script because it violates the following Content Security Policy directive: "script-src 'self'
Unfortunately it's not possible in this instance to use HTTPS on this particular site, so how do I allow a none http site in my Content Security Policy in my manifest.json or is it strictly https only?