我有这个网址,我想在Chrome扩展程序中加载脚本标记。
我试过这个:
<script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script>
和此:
var s = document.createElement('script');
s.setAttribute('src', 'https://platform.twitter.com/widgets.js');
document.body.appendChild(s);
无论哪种方式,我都会收到此错误:
Refused to load the script 'https://platform.twitter.com/widgets.js' because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-eval'".
我的manifest.json文件条目如下所示:
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
有没有办法包含引用www网址的脚本代码?