GTM Tag Assistant - Error Highlighter

An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.

Qu'est-ce que GTM Tag Assistant - Error Highlighter ?

GTM Tag Assistant - Error Highlighter est une extension Chrome développée par Steve Lamar (ReallyGoodData), et sa fonction principale est "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GTM Tag Assistant - Error Highlighter

Téléchargez les fichiers d'extension GTM Tag Assistant - Error Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GTM Tag Assistant - Error Highlighter GTM Tag Assistant - Error Highlighter
ID henoooadlnkicamlpjbkenolnhgnochc
URL Officiel https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc
Description An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
Taille du Fichier 171 KB
Nombre d'Installations 1,366
Version Actuelle 0.0.0.1
Dernière Mise à Jour 2023-09-19
Date de Publication 2023-09-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur Steve Lamar (ReallyGoodData)
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://reallygooddata.com/privacy
Langues Prises en Charge 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"
            ]
        }
    ]
}