我在 manifest.json 中使用以下行制作了 chrome 扩展,以便我可以通过 ajax 请求获取数据。
"content_security_policy": "script-src 'self' http://localhost; object-src 'self'",
我想用我的实时站点测试扩展,所以我将其更改为:
"content_security_policy": "script-src 'self' http://www.example.com; object-src 'self'",
但是现在当我启动 chrome 时扩展程序没有初始化。