我想为我的 Firefox 插件使用 Google Analytics 事件跟踪。我在我的 popup.html 中包含了这样的 ga 脚本。
<script src="http://www.google-analytics.com/ga.js"></script>
并补充道:
<script >
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
</script>
我使用以下代码推送事件:
_gaq.push(['_trackEvent', 'example', 'clickedit']);
我在 firefox 错误控制台中没有看到任何错误,而且分析页面中也没有该事件。
任何想法?Firefox不允许这样做吗?
谢谢