chrome扩展程序拒绝加载Google Analytics

时间:2015-03-28 22:30:20

标签: google-chrome-extension google-analytics

我已经按照无数的stackoverflow教程指定了如何正确地为你的chrome扩展安装Google分析,但到目前为止似乎没有任何工作。

现在我的主js文件中包含Google分析跟踪代码:

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXXXXXX-1', 'auto');
ga('set', 'checkProtocolTask', function(){}); 
ga('require', 'displayfeatures');
ga('send', 'pageview', '/override.html');

我的content_security_policy看起来像这样:

"content_security_policy": "script-src 'self' https://query.yahooapis.com https://google-analytics.com; object-src 'self'"

当我在本地扩展程序中运行它时,我得到的错误是:

  

拒绝加载脚本“https://www.google-analytics.com/analytics.js”,因为它违反了以下内容安全策略指令:“script-src'self'https://query.yahooapis.com https://google-analytics.com”。

我甚至尝试下载analytics.js文件并在content_script内使用,但这也不起作用......有什么想法吗?我想我已经查看了有关Chrome扩展内部的Google分析的每个stackoverflow问题,但似乎没有任何工作......

0 个答案:

没有答案