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ファイルをダウンロード

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
Eメール [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"
    ]
}