I've made a chrome extension with the following line in the manifest.json, so that I can get data via an ajax request.
"content_security_policy": "script-src 'self' http://localhost; object-src 'self'",
I want to test the extension with my live site, so I changed it to:
"content_security_policy": "script-src 'self' http://www.example.com; object-src 'self'",
but now the extension doesn't initialize when I start chrome.