GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
Cos'è GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter è un'estensione di Chrome sviluppata da Steve Lamar (ReallyGoodData), e la sua funzione principale è "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GTM Tag Assistant - Error Highlighter
Scarica i file di estensione GTM Tag Assistant - Error Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
URL Ufficiale | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Descrizione | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
Dimensione del File | 171 KB |
Conteggio Installazioni | 1,366 |
Versione Corrente | 0.0.0.1 |
Ultimo Aggiornamento | 2023-09-19 |
Data di Pubblicazione | 2023-09-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Steve Lamar (ReallyGoodData) |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://reallygooddata.com/privacy |
Lingue Supportate | 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" ] } ] } |