标签: javascript google-chrome google-chrome-extension
在chrome-extension://<EXTENSION_ID>/hello.html内,以下代码:
chrome-extension://<EXTENSION_ID>/hello.html
<script> alert("hi"); </script>
JS不起作用? 如何使它工作?
答案 0 :(得分:1)
根据强制执行的Content Security Policy,您无法在Chrome扩展程序中使用内联JavaScript。
您需要通过将其置于外部JS文件中来摆脱它。