Tag Manager Server Debug Console

Extension for TMS debug mode

Tag Manager Server Debug Consoleคืออะไร?

Tag Manager Server Debug Console เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tagmanagerserver.com และคุณลักษณะหลักของมันคือ "Extension for TMS debug mode"

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tag Manager Server Debug Console

ดาวน์โหลดไฟล์ส่วนขยาย Tag Manager Server Debug Console ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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