Can anyone see why the below manifest (truncated for brevity) is producing:
could not load javascript '' for content script
{
...
"content_scripts": [{
"matches": ["<all_urls>"],
"js": [
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.7.22/fabric.min.js",
"assets/js/content-script-curr-tab.js"
]
}],
...
"content_security_policy": "object-src 'self'; script-src 'self' https://apis.google.com https://cdnjs.cloudflare.com"
...
}
If I remove the reference to the Cloudflare script, it loads, yet I've clearly whitelisted the Cloudflare CDN in the content security policy.