目前正在开发一个需要Heap分析的Chrome扩展。我可以看到Heap正在使用提供的加载脚本正确设置,并且我可以在Chrome的开发者工具的网络选项卡中看到消息正在发送到heapanalytics.com
。唯一的问题是这没有显示在Heap的界面中。
下面是我的身份和用户属性代码:
heap.identify("[email protected]");
window.heap.addUserProperties({'Plugin': 'gmail'});
字符串
以下是我的跟踪代码:
heap.track("EmailSent", {
plugin: "gmail",
tracked: true,
linkIncluded: true,
oneRecipient: true,
toggle: true
});
型
1条答案
按热度按时间laik7k3q1#
带有manifest v3的Chrome扩展程序(v2正在日落)无法加载第三方脚本用于分析目的。因此,您无法集成简单的HeapJs客户端,但可以使用Google Analytics Measurement Protocol。