Data Layer View
Display the contents of a w3c-compliant Data Layer within the console
Data Layer View क्या है?
Data Layer View jon.narong द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the contents of a w3c-compliant Data Layer within the console"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Data Layer View एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Display the contents of a website's w3c-spec Customer Experience Digital Data Layer object directly with the console. The extension will crawl through the nested Javascript object and display a flattened version of the object's keys and values directly within the developer console. The purpose of this extension is to simplify data layer debugging and validation. V1.1 - Bug fix for sort issue when duplicate parents exist in multiple levels of object hierarchy.
एक्सटेंशन की मूल जानकारी
नाम | Data Layer View |
ID | iggjmbmdjelfgghlkghnmfmblkghbclf |
आधिकारिक URL | https://chromewebstore.google.com/detail/data-layer-view/iggjmbmdjelfgghlkghnmfmblkghbclf |
विवरण | Display the contents of a w3c-compliant Data Layer within the console |
फ़ाइल का आकार | 11.1 KB |
स्थापना संख्या | 69 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2017-03-02 |
प्रकाशन तिथि | 2017-03-02 |
डेवलपर | jon.narong |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Data Layer View", "version": "1.1", "description": "Display the contents of a w3c-compliant Data Layer within the console", "author": "Jon Narong", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "View Data Layer" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "datalayerview.js" ], "permissions": [ "activeTab", "storage" ] } |