Debugger for Adobe Analytics

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

Debugger for Adobe Analytics란 무엇입니까?

Debugger for Adobe Analytics은(는) Tomas Balciunas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prints to JavaScript console what data is sent to Adobe Analytics."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Debugger for Adobe Analytics 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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