GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
O que é GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter é uma extensão do Chrome desenvolvida por Steve Lamar (ReallyGoodData), e sua principal característica é "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GTM Tag Assistant - Error Highlighter
Baixe arquivos de extensão GTM Tag Assistant - Error Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
URL Oficial | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Descrição | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
Tamanho do Arquivo | 171 KB |
Contagem de Instalações | 1,366 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2023-09-19 |
Data de Publicação | 2023-09-19 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Steve Lamar (ReallyGoodData) |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://reallygooddata.com/privacy |
Idiomas Suportados | 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" ] } ] } |