I'm trying to load the JS from an external server, so that my extension can be updated and developed without needing to update the chrome extension. This is my current manifest:
{
"name": "Test",
"version": "1.0",
"manifest_version": 2,
"description": "Test extension",
"content_security_policy": "script-src 'self' https://test.dev77.net/; object-src 'self'",
"content_scripts": [
{
"matches": ["http://google.com"],
"js": ["https://test.dev77.net/test.js"]
}
]
}
I get the following when attempting to install the extension:
Could not load javascript 'https://test.dev77.net/test.js' for content script.