鉴于 chrome 内容安全策略的变化,我已将所有脚本移动到单独的文件中,并在我的 chrome 扩展的 html 页面(背景和弹出窗口)中引用它们。但我仍然收到以下消息
Refused to execute inline script because it violates the following Content Security Policy
directive: "script-src 'self' chrome-extension-resource:".
这是我的背景页面
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="background.js"></script>
</head>
<!--<body onload = "Load();">-->
<body>
</body>
</html>
您会看到没有内联 js,但错误消息一直存在。我的代码有什么问题,我该如何解决?
注意:我使用的是清单版本 2 和 chrome 版本 21.0.1180.89
谢谢