GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
Wat is GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter is een Chrome-extensie ontwikkeld door Steve Lamar (ReallyGoodData), en de belangrijkste functie is "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.".
Extensie Screenshots
Download het CRX-bestand van de extensie GTM Tag Assistant - Error Highlighter
Download GTM Tag Assistant - Error Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
Officiële URL | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Beschrijving | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
Bestandsgrootte | 171 KB |
Aantal Installaties | 1,366 |
Huidige Versie | 0.0.0.1 |
Laatst Bijgewerkt | 2023-09-19 |
Publicatiedatum | 2023-09-19 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Steve Lamar (ReallyGoodData) |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://reallygooddata.com/privacy |
Ondersteunde Talen | 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" ] } ] } |