Debugger for Adobe Analytics

Prints to JavaScript console what data is sent to Adobe Analytics.

Debugger for Adobe Analyticsคืออะไร?

Debugger for Adobe Analytics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tomas Balciunas และคุณลักษณะหลักของมันคือ "Prints to JavaScript console what data is sent to Adobe Analytics."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Debugger for Adobe Analytics

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

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

                        To see what data is being sent in JS console:
- On Windows press ctrl+shift+j
- On Mac press alt+cmd+j

Adobe Analytics Debugger for POST and GET requests. Prints following info:
- displays all page load data, link events, file downloads
- shows information about data collection servers and informs if it is an RDC server or not
- provides recommendations on how to improve the implementation
- displays Adobe Marketing Cloud visitor ID and Adobe Marketing Cloud organisation ID

Release Notes

v1.4
+ super long post calls are not truncating anymore
+ server calls are now printed in a tab where a request originated
+ added s.pageType, s.zip
+ fixed URI decoding issues
+ custom and downloads calls will not show footer (data center, cookies, JS version, library version)

v1.3
+ very long post server calls are working now! 
Big thanks to [email protected] for fixing this

+ added grouping and colours
+ shows context variables 
+ cookie information - first or third party
+ shows s.tnt variable

v1.2
+ display AMC org ID
+ provide recommendations

v1.1
+ showing visitor IDs from vid(s.visitorID), aid(legacy s_vi cookie), mid(marketing cloud id)
+ added new RDC domain - Singapore and Pacific Northwest (sc.omtrdc.net)
+ showing list eVars
+ hidden unimportant data such as browser and screen information
+ by default the debugger is ON now                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Debugger for Adobe Analytics Debugger for Adobe Analytics
ID bdingoflfadhnjohjaplginnpjeclmof
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/debugger-for-adobe-analyt/bdingoflfadhnjohjaplginnpjeclmof
คำอธิบาย Prints to JavaScript console what data is sent to Adobe Analytics.
ขนาดไฟล์ 16.45 KB
จำนวนการติดตั้ง 40,845
เวอร์ชันปัจจุบัน 1.4.5
อัปเดตครั้งล่าสุด 2022-06-02
วันที่เผยแพร่ 2020-04-25
คะแนน 4.38/5 รวมทั้งหมด 58 คะแนน
ผู้พัฒนา Tomas Balciunas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.linkedin.com/in/tomasbalciunas
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.4.5",
    "name": "Debugger for Adobe Analytics",
    "description": "Prints to JavaScript console what data is sent to Adobe Analytics.",
    "icons": {
        "128": "icon.png",
        "16": "icon.png",
        "48": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Adobe Analytics debugger is ON"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/b\/ss\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "cs.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "page-script.js"
    ]
}