GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
What is GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter is a Chrome extension developed by Steve Lamar (ReallyGoodData), and its main feature is "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.".
Extension Screenshots
Download GTM Tag Assistant - Error Highlighter Extension CRX File
Download GTM Tag Assistant - Error Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
Official URL | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Description | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
File Size | 171 KB |
Installation Count | 1,366 |
Current Version | 0.0.0.1 |
Last Updated | 2023-09-19 |
Publish Date | 2023-09-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Steve Lamar (ReallyGoodData) |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://reallygooddata.com/privacy |
Supported Languages | 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" ] } ] } |