GTM Tag Assistant - Error Highlighter

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

什麼是GTM Tag Assistant - Error Highlighter?

GTM Tag Assistant - Error Highlighter是由Steve Lamar (ReallyGoodData)開發的Chrome擴展程式,該擴展的主要功能是“An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.”。

擴展截圖

screenshot

下載GTM Tag Assistant - Error Highlighter擴展crx文件

下載GTM Tag Assistant - Error Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 GTM Tag Assistant - Error Highlighter GTM Tag Assistant - Error Highlighter
ID henoooadlnkicamlpjbkenolnhgnochc
官方網址 https://chromewebstore.google.com/detail/gtm-tag-assistant-error-h/henoooadlnkicamlpjbkenolnhgnochc
簡介 An easy way to see tags that error on Google Tag Assistant in Google Tag Manager.
檔案大小 171 KB
安裝次數 1,366
目前版本 0.0.0.1
更新時間 2023-09-19
上架時間 2023-09-19
評分 5.00/5 共 1 次評分
開發者 Steve Lamar (ReallyGoodData)
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://reallygooddata.com/privacy
支援的語言 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"
            ]
        }
    ]
}