GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
Co to jest GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter to rozszerzenie Chrome opracowane przez Steve Lamar (ReallyGoodData), a jego główną funkcją jest „An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GTM Tag Assistant - Error Highlighter
Pobierz pliki rozszerzeń GTM Tag Assistant - Error Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
Oficjalny URL | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Opis | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
Rozmiar pliku | 171 KB |
Liczba instalacji | 1,366 |
Aktualna Wersja | 0.0.0.1 |
Ostatnia Aktualizacja | 2023-09-19 |
Data Publikacji | 2023-09-19 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Steve Lamar (ReallyGoodData) |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://reallygooddata.com/privacy |
Obsługiwane Języki | 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" ] } ] } |