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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}