Tag Manager Server Debug Console

Extension for TMS debug mode

Tag Manager Server Debug Console란 무엇입니까?

Tag Manager Server Debug Console은(는) https://tagmanagerserver.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for TMS debug mode"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tag Manager Server Debug Console 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension only works in combination with the Tag Manager Server (v0.4.0) Tracking setup. It is used to analyze all server requests to and from the TMS.
With the TMS Debug Console you can view all dataLayer Push events and executed server tags.

TMS Debug Console (chrome extension)
1. Download this Chrome extension from chrome web store:
2. Set the debugAuth code in your config.php: $aConfig['default']['debugAuth'] = '...';
3. Navigate to your Page with TMS implementation
4. Open the TMS Debug Console Settings with a click on the extension icon
    - Set the same authCode as before
    - Activate Debug Console and debugMode if needed
    - Test new container from your server

Debug Console settings & information

The coloured background of the numbers shows the status of the current server-side tracking:
- grey: inactive Debug Console
- green: Browser console logs activated
- orange: activated debug mode
- purple: container preview
- red: invalid debugAuth code or TMS error

The two numbers show:
- Tag Manager Server Input shows the submitted data from the browser to the TMS API.
- Tag Manager Server Action shows the server request of the TMS via the measurement protocol to Google Analytics

Browser console output
Once you have activated the Debug Console with the appropriate debugAuth code, the browser console will display the most important tracking information.

Like this extension the whole server-side tracking solution is still in beta stage. You can find more information on our website.                    

확장 프로그램 기본 정보

이름 Tag Manager Server Debug Console Tag Manager Server Debug Console
ID camhbggldedhfjbjabcndiggmpfghkdp
공식 URL https://chromewebstore.google.com/detail/tag-manager-server-debug/camhbggldedhfjbjabcndiggmpfghkdp
설명 Extension for TMS debug mode
파일 크기 32.93 KB
설치 횟수 189
현재 버전 0.1.1
최근 업데이트 2020-07-14
출시 날짜 2020-07-05
평점 5.00/5 총 1 개의 평점
개발자 https://tagmanagerserver.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.tagmanagerserver.com/
도움말 페이지 URL https://www.tagmanagerserver.com/documentation/#debug-console
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tag Manager Server Debug Console",
    "description": "Extension for TMS debug mode",
    "version": "0.1.1",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon16g.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": []
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        ""
    ]
}