gpt4 book ai didi

javascript - 尝试将 Google Analytics 添加到 Chrome 扩展

转载 作者:行者123 更新时间:2023-12-05 03:49:38 25 4
gpt4 key购买 nike

我浏览了几个 other posts关于将 GA 添加到我的 chrome 扩展程序,但还没有成功。

到目前为止,这是我的分析代码

analytics.js

(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-XXXXXXX-Y', 'auto');
ga('send', 'pageview');

当然,我已经添加了我的 GA ID。我不断遇到的主要错误是

analytics.js:3 Refused to load the script 'https://www.google-analytics.com/analytics.js' because it violates the following Content Security Policy directive: "script-src 'self' blob: filesystem:". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.

引用tutorial ,我已将以下内容添加到我的 manifest.json list .json

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

但是,即使将它添加到我的扩展程序之后,我的开发控制台中仍然会出现错误。

作为引用,这是我的 index.html

中的脚本
<html lang="en">
<head>
<title>Polus</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" type='image/png' href="images/polus_tab_icon.png"/>
<link rel="stylesheet" type="text/css" media="screen" href="./css/calendar-style.css"/>

<script type="text/javascript" src="./js/analytics.js"></script>

</head>

如果可能请帮忙!

最佳答案

您在 manifest.json 中的内容政策声明无效,因为它引用的域与 www.google-analytics.com 不同。此外,要使用 Universal Analytics 脚本 analytics.js,您还需要调整设置以禁用协议(protocol)检查。看看这个教程https://davidsimpson.me/2014/05/27/add-googles-universal-analytics-tracking-chrome-extension/

关于javascript - 尝试将 Google Analytics 添加到 Chrome 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63836190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com