GTM Tag Assistant - Error Highlighter
An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
Co je GTM Tag Assistant - Error Highlighter?
GTM Tag Assistant - Error Highlighter je rozšíření Chrome vyvinuté Steve Lamar (ReallyGoodData), a jeho hlavní funkcí je „An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GTM Tag Assistant - Error Highlighter
Stáhněte si soubory rozšíření GTM Tag Assistant - Error Highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | GTM Tag Assistant - Error Highlighter |
ID | henoooadlnkicamlpjbkenolnhgnochc |
Oficiální URL | https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc |
Popis | An easy way to see tags that error on Google Tag Assistant in Google Tag Manager. |
Velikost souboru | 171 KB |
Počet instalací | 1,366 |
Aktuální Verze | 0.0.0.1 |
Poslední Aktualizace | 2023-09-19 |
Datum Vydání | 2023-09-19 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Steve Lamar (ReallyGoodData) |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://reallygooddata.com/privacy |
Podporované Jazyky | 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" ] } ] } |