GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
什么是GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter是由Steve Lamar (ReallyGoodData)开发的Chrome扩展程序,该扩展的主要功能是“An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.”。
扩展截图
下载GTM Tag Assistant - Error Highlighter扩展crx文件
下载GTM Tag Assistant - Error Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Highlight Google Tag Manager (GTM) tags with error messages on the Google Tag Assistant.
You'll see a visual indication for tags that encountered exceptions, failed, or are still running. This allows you to easily identify and troubleshoot errors in your tracking implementation. 扩展基本信息
| 名称 | |
| ID | henoooadlnkicamlpjbkenolnhgnochc |
| 官方URL | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
| 简介 | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
| 文件大小 | 171 KB |
| 安装次数 | 1,366 |
| 当前版本 | 0.0.0.1 |
| 更新时间 | 2023-09-19 |
| 上架时间 | 2023-09-19 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Steve Lamar (ReallyGoodData) |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://reallygooddata.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "GTM Tag Assistant - Error Highlighter",
"description": "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.",
"version": "0.0.0.1",
"permissions": [
"tabs",
"scripting",
"storage",
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/tagassistant.google.com\/*"
],
"js": [
"content.js"
]
}
]
} | |