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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Steve Lamar (ReallyGoodData) และคุณลักษณะหลักของมันคือ "An easy way to see tags that error on Google Tag Assistant in Google Tag Manager."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GTM Tag Assistant - Error Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}