Trackie
Debug and test tag manager and analytics implementations.
什么是Trackie?
Trackie是由https://pualien.github.io/Trackie开发的Chrome扩展程序,该扩展的主要功能是“Debug and test tag manager and analytics implementations.”。
扩展截图
下载Trackie扩展crx文件
下载Trackie扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Trackie 🐞 is a Chrome extension to enhance debugging 👨🏼💻 of some frequently-used tag management platforms 🌩:
- GTM
- Tealium
- More tag managers supported, as linked in the project homepage
In addition Trackie intercepts ⚡️ a lot of most-used tag calls (page view, clicks, checkout...) 🕵🏻♂from:
- Google Analytics also v4 property, formerly known as "App + Web" property (with Audiences also)
- Many other tags supported, as linked in the project homepage
Tag calls can now be exported in csv 💾 in order to better view data collected offline! 扩展基本信息
| 名称 | |
| ID | iphjjodolgbelaogcefgpegebgecopeh |
| 官方URL | https://chromewebstore.google.com/detail/trackie/iphjjodolgbelaogcefgpegebgecopeh |
| 简介 | Debug and test tag manager and analytics implementations. |
| 文件大小 | 172 KB |
| 安装次数 | 456 |
| 当前版本 | 0.11.12 |
| 更新时间 | 2020-12-14 |
| 上架时间 | 2019-11-15 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | https://pualien.github.io/Trackie |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://pualien.github.io/Trackie/ |
| 帮助页面URL | https://pualien.github.io/Trackie/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trackie",
"description": "Debug and test tag manager and analytics implementations.",
"short_name": "trackie",
"version": "0.11.12",
"icons": {
"48": "i48.png",
"128": "i128.png"
},
"devtools_page": "devtools.html",
"options_page": "options.html",
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"inject.js",
"oo_poly.js"
],
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
"notifications",
"declarativeWebRequest",
"*:\/\/*\/*",
"activeTab",
"downloads"
]
} | |