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 を使用しています。
ありがとう