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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prints to JavaScript console what data is sent to Adobe Analytics."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Debugger for Adobe Analytics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |